/* Options: Date: 2025-12-11 16:16:54 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: PjmItScedLmp5MinRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/pjm-it-sced-lmp-5min", "POST") class PjmItScedLmp5MinRequest implements IConvertible, IPost { DateTime? date; PjmItScedLmp5MinRequest({this.date}); PjmItScedLmp5MinRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { date = JsonConverters.fromJson(json['date'],'DateTime',context!); return this; } Map toJson() => { 'date': JsonConverters.toJson(date,'DateTime',context!) }; getTypeName() => "PjmItScedLmp5MinRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'catalog_jobs_dev.power.dev', types: { 'PjmItScedLmp5MinRequest': TypeInfo(TypeOf.Class, create:() => PjmItScedLmp5MinRequest()), });