/* Options: Date: 2025-06-19 22:57:14 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: SendLiveAnswerChatMessage.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export class LiveAnswerMessage { public id: string; public role: string; public participant: string; public content: string; public date: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/nodes/live-answer-chat/send") export class SendLiveAnswerChatMessage implements IReturn { public chatToken: string; public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SendLiveAnswerChatMessage'; } public getMethod() { return 'POST'; } public createResponse() { return new LiveAnswerMessage(); } }