/* Options: Date: 2025-12-13 05:44:10 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: ErcotDocSaveRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/ercot-doc-save/{TypeId}", "GET") class ErcotDocSaveRequest implements IConvertible, IGet { int? typeId; ErcotDocSaveRequest({this.typeId}); ErcotDocSaveRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { typeId = json['typeId']; return this; } Map toJson() => { 'typeId': typeId }; getTypeName() => "ErcotDocSaveRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'catalog_jobs_dev.power.dev', types: { 'ErcotDocSaveRequest': TypeInfo(TypeOf.Class, create:() => ErcotDocSaveRequest()), });