/* Options: Date: 2025-12-11 14:53:01 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: ErcotHighestPriceAsOfferSelectedRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/ercot-highest-price-as-offer-selected", "POST") class ErcotHighestPriceAsOfferSelectedRequest implements IConvertible, IPost { int? docId; ErcotHighestPriceAsOfferSelectedRequest({this.docId}); ErcotHighestPriceAsOfferSelectedRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { docId = json['docId']; return this; } Map toJson() => { 'docId': docId }; getTypeName() => "ErcotHighestPriceAsOfferSelectedRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'catalog_jobs_dev.power.dev', types: { 'ErcotHighestPriceAsOfferSelectedRequest': TypeInfo(TypeOf.Class, create:() => ErcotHighestPriceAsOfferSelectedRequest()), });