/* Options: Date: 2025-03-14 07:25:25 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FileAttachmentService.GetTotalFilesizeForBranchRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class ValueTypeResult implements IConvertible { T? Result; ValueTypeResult({this.Result}); ValueTypeResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Result = json['Result']; return this; } Map toJson() => { 'Result': Result }; getTypeName() => "ValueTypeResult<$T>"; TypeContext? context = _ctx; } // @Route("/api/FileAttachment/GetTotalFilesizeForBranch", "POST,GET") class GetTotalFilesizeForBranchRequest implements IReturn>, IConvertible { GetTotalFilesizeForBranchRequest(); GetTotalFilesizeForBranchRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => ValueTypeResult(); getResponseTypeName() => "ValueTypeResult"; getTypeName() => "GetTotalFilesizeForBranchRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'ValueTypeResult': TypeInfo(TypeOf.GenericDef,create:() => ValueTypeResult()), 'GetTotalFilesizeForBranchRequest': TypeInfo(TypeOf.Class, create:() => GetTotalFilesizeForBranchRequest()), });