/* Options: Date: 2024-07-04 03:01:16 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cip-reporting-staging.chargeitpro.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReconRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/Recon/{LocationId}") class ReconRequest implements IConvertible { String? LocationId; ReconRequest({this.LocationId}); ReconRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { LocationId = json['LocationId']; return this; } Map toJson() => { 'LocationId': LocationId }; getTypeName() => "ReconRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'cip_reporting_staging.chargeitpro.com', types: { 'ReconRequest': TypeInfo(TypeOf.Class, create:() => ReconRequest()), });