/* Options: Date: 2026-01-14 10:43:48 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: 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: 'iso_api.adumen.com', types: { 'AwsS3KeyLowerCaseRequest': TypeInfo(TypeOf.Class, create:() => AwsS3KeyLowerCaseRequest()), });