/* Options: Date: 2025-05-04 22:46: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: LiveAnswerSurveyCallback.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/nodes/live-answer/survey") export class LiveAnswerSurveyCallback { public sessionId: string; public flowId: string; public nodeId: string; public clientId: string; public formId: string; public data: { [index:string]: Object; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LiveAnswerSurveyCallback'; } public getMethod() { return 'POST'; } public createResponse() {} }