/* Options: Date: 2026-01-14 10:45:06 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://iso-api.adumen.com //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: 'iso_api.adumen.com', types: { 'SubstationSaveRequest': TypeInfo(TypeOf.Class, create:() => SubstationSaveRequest()), });