/* Options: Date: 2025-05-29 13:23:50 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: ChatEventsNodeNewMessageCallback.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial<NodeParameterMap>) { (Object as any).assign(this, init); } } // @Route("/nodes/chat-events/new-message") export class ChatEventsNodeNewMessageCallback { public accountId: string; public endpointId: string; public sessionId: string; public body: string; public sender: string; public senderDisplayName: string; public attachmentUri: string; public attachmentContentType: string; public newMessage: string; public newMessageBody: string; public newMessageSender: string; public constructor(init?: Partial<ChatEventsNodeNewMessageCallback>) { (Object as any).assign(this, init); } public getTypeName() { return 'ChatEventsNodeNewMessageCallback'; } public getMethod() { return 'POST'; } public createResponse() {} }