/* Options: Date: 2026-02-14 10:14:07 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Ping.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class PingResponse { public message: string; public glnNumber: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Ping */ // @Route("/ping", "POST") // @Api(Description="Ping") // @ApiResponse(Description="Ping response message", StatusCode=200) export class Ping implements IReturn { // @ApiMember(DataType="string", IsRequired=true, Name="Message", ParameterType="body") public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'Ping'; } public getMethod() { return 'POST'; } public createResponse() { return new PingResponse(); } }