/* Options: Date: 2025-12-13 05:11:50 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: ErcotDownloadTestRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/ercot-download-test", "POST") class ErcotDownloadTestRequest implements IConvertible, IPost { String? path; int? id; ErcotDownloadTestRequest({this.path,this.id}); ErcotDownloadTestRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { path = json['path']; id = json['id']; return this; } Map toJson() => { 'path': path, 'id': id }; getTypeName() => "ErcotDownloadTestRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'catalog_jobs_dev.power.dev', types: { 'ErcotDownloadTestRequest': TypeInfo(TypeOf.Class, create:() => ErcotDownloadTestRequest()), });