/* Options: Date: 2024-10-18 04:34:50 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEntitySummary.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class EntitySummaryResponse { public Summary: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** * Get the summary of an entity. */ // @Route("/entities/{EntityName}/{EntityID}/summary", "GET") // @Api(Description="Get the summary of an entity.") export class GetEntitySummary implements IReturn { /** * ID of the entity */ // @ApiMember(Description="ID of the entity", IsRequired=true) public EntityID: string; /** * 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 'GetEntitySummary'; } public getMethod() { return 'GET'; } public createResponse() { return new EntitySummaryResponse(); } }