/* Options: Date: 2026-05-19 09:51:29 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DownloadFile.* //ExcludeTypes: //DefaultImports: */ // @Route("/tasks/{asyncTaskId}/download", "GET") export class DownloadFile { /** @description Async task ID */ // @ApiMember(Description="Async task ID", IsRequired=true) public asyncTaskId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DownloadFile'; } public getMethod() { return 'GET'; } public createResponse() {} }