/* Options: Date: 2026-04-17 10:19:10 Version: 10.02 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cip-reporting-dev.chargeitpro.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LogRequestRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/Log/Request/{CID}") // @Route("/Log/Request/{CID}/{SendLogs}") class LogRequestRequest implements IConvertible, IGet { String? cid; bool? sendLogs; LogRequestRequest({this.cid,this.sendLogs}); LogRequestRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { cid = json['cid']; sendLogs = json['sendLogs']; return this; } Map toJson() => { 'cid': cid, 'sendLogs': sendLogs }; getTypeName() => "LogRequestRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'cip_reporting_dev.chargeitpro.com', types: { 'LogRequestRequest': TypeInfo(TypeOf.Class, create:() => LogRequestRequest()), });