/* Options: Date: 2025-12-13 05:42:48 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: IsoNeLocationObjectIdFixRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/iso-ne/location-object-id-fix", "POST") class IsoNeLocationObjectIdFixRequest implements IConvertible, IPost { DateTime? start; DateTime? end; IsoNeLocationObjectIdFixRequest({this.start,this.end}); IsoNeLocationObjectIdFixRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { start = JsonConverters.fromJson(json['start'],'DateTime',context!); end = JsonConverters.fromJson(json['end'],'DateTime',context!); return this; } Map toJson() => { 'start': JsonConverters.toJson(start,'DateTime',context!), 'end': JsonConverters.toJson(end,'DateTime',context!) }; getTypeName() => "IsoNeLocationObjectIdFixRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'catalog_jobs_dev.power.dev', types: { 'IsoNeLocationObjectIdFixRequest': TypeInfo(TypeOf.Class, create:() => IsoNeLocationObjectIdFixRequest()), });