/* Options: Date: 2024-07-04 03:08:04 Version: 6.40 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: LogsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/Logs/List/{CID}") class LogsRequest implements IConvertible { String? CID; LogsRequest({this.CID}); LogsRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CID = json['CID']; return this; } Map toJson() => { 'CID': CID }; getTypeName() => "LogsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'cip_reporting_dev.chargeitpro.com', types: { 'LogsRequest': TypeInfo(TypeOf.Class, create:() => LogsRequest()), });