/* Options: Date: 2025-03-14 07:38:35 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FileAttachmentService.GetTotalFilesizeForBranchRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ValueTypeResult { public Result: T; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } // @Route("/api/FileAttachment/GetTotalFilesizeForBranch", "POST,GET") export class GetTotalFilesizeForBranchRequest implements IReturn> { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'FileAttachmentService.GetTotalFilesizeForBranchRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new ValueTypeResult(); } }