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