/* Options: Date: 2025-05-04 22:08:31 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CheckAccount.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export interface IPost { } export class CheckAccountResponse { public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/accounts/{accountId}/check", "POST") export class CheckAccount implements IReturn, IPost { public accountId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CheckAccount'; } public getMethod() { return 'POST'; } public createResponse() { return new CheckAccountResponse(); } }