/* Options: Date: 2025-06-28 22:39:30 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: HealthCheck.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/health") export class HealthCheck { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'HealthCheck'; } public getMethod() { return 'GET'; } public createResponse() {} }