/* Options: Date: 2025-07-04 08:47:10 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: GetEntityIdentifier.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class CommonEntityIdentifier { public ID: string; public DisplayName: string; public EntityName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Returns the identifier information of an entity. */ // @Route("/entities/{EntityName}/{EntityID}", "GET") // @Api(Description="Returns the identifier information of an entity.") export class GetEntityIdentifier 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 'GetEntityIdentifier'; } public getMethod() { return 'GET'; } public createResponse() { return new CommonEntityIdentifier(); } }