/* Options: Date: 2025-05-05 00:14:29 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: LiveAnswerSurveyCallback.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/nodes/live-answer/survey") public static class LiveAnswerSurveyCallback { public String sessionId = null; public String flowId = null; public String nodeId = null; public String clientId = null; public String formId = null; public HashMap data = null; public String getSessionId() { return sessionId; } public LiveAnswerSurveyCallback setSessionId(String value) { this.sessionId = value; return this; } public String getFlowId() { return flowId; } public LiveAnswerSurveyCallback setFlowId(String value) { this.flowId = value; return this; } public String getNodeId() { return nodeId; } public LiveAnswerSurveyCallback setNodeId(String value) { this.nodeId = value; return this; } public String getClientId() { return clientId; } public LiveAnswerSurveyCallback setClientId(String value) { this.clientId = value; return this; } public String getFormId() { return formId; } public LiveAnswerSurveyCallback setFormId(String value) { this.formId = value; return this; } public HashMap getData() { return data; } public LiveAnswerSurveyCallback setData(HashMap value) { this.data = value; return this; } } }