/* Options: Date: 2025-12-11 16:22:02 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: S3UnzipErcotRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/s3/unzip-ercot", "POST") class S3UnzipErcotRequest implements IConvertible, IPost { String? sourcePath; String? targetPath; int? zipLevel; int? forceMonthPath; S3UnzipErcotRequest({this.sourcePath,this.targetPath,this.zipLevel,this.forceMonthPath}); S3UnzipErcotRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { sourcePath = json['sourcePath']; targetPath = json['targetPath']; zipLevel = json['zipLevel']; forceMonthPath = json['forceMonthPath']; return this; } Map toJson() => { 'sourcePath': sourcePath, 'targetPath': targetPath, 'zipLevel': zipLevel, 'forceMonthPath': forceMonthPath }; getTypeName() => "S3UnzipErcotRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'catalog_jobs_dev.power.dev', types: { 'S3UnzipErcotRequest': TypeInfo(TypeOf.Class, create:() => S3UnzipErcotRequest()), });