/* Options: Date: 2026-05-08 19:19:46 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://tanchinhdo-api-sandbox.adnx.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PingRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/ping") // @Route("/health") export class PingRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PingRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new Object(); } }