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