/* Options: Date: 2025-07-04 08:44:33 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEntityThumbnail.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description Get the thumbnail of an entity. */ // @Route("/entities/{EntityName}/{EntityID}/thumbnail", "GET") // @Api(Description="Get the thumbnail of an entity.") export class GetEntityThumbnail implements IReturn { /** @description ID of the entity */ // @ApiMember(Description="ID of the entity", IsRequired=true) public EntityID: string; /** @description Name of the entity */ // @ApiMember(Description="Name of the entity", IsRequired=true) public EntityName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetEntityThumbnail'; } public getMethod() { return 'GET'; } public createResponse() { return new Blob(); } }