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