/* Options: Date: 2026-04-17 10:42: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: LocationRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/Location/{LocationId}") class LocationRequest implements IConvertible, IGet { 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()), });