/* Options: Date: 2026-01-08 12:09:58 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.foundrylab.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DownloadImageRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class GetOperationUnTenanted implements IHasGetOptions, IGet { public embed?: string; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } export interface IHasGetOptions { embed?: string; } export interface ITenantedRequest { organisationId?: string; } export class GetOperationTenanted extends GetOperationUnTenanted implements ITenantedRequest { public organisationId?: string; public constructor(init?: Partial>) { super(init); (Object as any).assign(this, init); } } // @Route("/photos/{Id}/{Size}", "GET") export class DownloadImageRequest extends GetOperationTenanted implements IReturn { public id?: string; public size?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'DownloadImageRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new Blob(); } }