/* Options: Date: 2026-04-14 20:36:56 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.com/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Ping.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck 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 Test authentication and connectivity */ // @Route("/ping", "POST") // @Api(Description="Test authentication and connectivity") // @ApiResponse(Description="Ping response message", StatusCode=200) export class Ping implements IReturn { /** @description Ping message text */ // @ApiMember(Description="Ping message text", IsRequired=true) 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(); } }