/* Options: Date: 2026-04-01 18:49:12 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPreview.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Preview { public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/preview/{EntityType}/{ID}", "GET") export class GetPreview implements IReturn { public ID: string; public EntityType: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPreview'; } public getMethod() { return 'GET'; } public createResponse() { return new Preview(); } }