/* Options: Date: 2025-12-13 05:44:17 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: AwsS3EercotLowerCaseRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/awss3-ercot-lowercase", "Post") class AwsS3EercotLowerCaseRequest implements IConvertible, IPost { String? rootPath; bool? deleteOld; AwsS3EercotLowerCaseRequest({this.rootPath,this.deleteOld}); AwsS3EercotLowerCaseRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { rootPath = json['rootPath']; deleteOld = json['deleteOld']; return this; } Map toJson() => { 'rootPath': rootPath, 'deleteOld': deleteOld }; getTypeName() => "AwsS3EercotLowerCaseRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'catalog_jobs_dev.power.dev', types: { 'AwsS3EercotLowerCaseRequest': TypeInfo(TypeOf.Class, create:() => AwsS3EercotLowerCaseRequest()), });