/* Options: Date: 2025-12-11 14:53:00 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: AesoAncillaryPriceRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/aeso-ancilary-price-request", "POST") class AesoAncillaryPriceRequest implements IConvertible, IPost { DateTime? lastDataSaveDate; AesoAncillaryPriceRequest({this.lastDataSaveDate}); AesoAncillaryPriceRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { lastDataSaveDate = JsonConverters.fromJson(json['lastDataSaveDate'],'DateTime',context!); return this; } Map toJson() => { 'lastDataSaveDate': JsonConverters.toJson(lastDataSaveDate,'DateTime',context!) }; getTypeName() => "AesoAncillaryPriceRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'catalog_jobs_dev.power.dev', types: { 'AesoAncillaryPriceRequest': TypeInfo(TypeOf.Class, create:() => AesoAncillaryPriceRequest()), });