/* Options: Date: 2025-12-06 05:22:46 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AgentBackOfficeAnswersRequest.* //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="/v1/AgentBackofficeAnswers/{AgentRegistrationTempId}", Verbs="POST,OPTIONS") public static class AgentBackOfficeAnswersRequest implements IReturn { public Integer AgentRegistrationTempId = null; public ArrayList AgentRegistrationAnswers = new ArrayList(); public Integer getAgentRegistrationTempId() { return AgentRegistrationTempId; } public AgentBackOfficeAnswersRequest setAgentRegistrationTempId(Integer value) { this.AgentRegistrationTempId = value; return this; } public ArrayList getAgentRegistrationAnswers() { return AgentRegistrationAnswers; } public AgentBackOfficeAnswersRequest setAgentRegistrationAnswers(ArrayList value) { this.AgentRegistrationAnswers = value; return this; } private static Object responseType = AgentBackofficeAnswersResponse.class; public Object getResponseType() { return responseType; } } public static class AgentBackofficeAnswersResponse { public ResponseStatus ResponseStatus = null; public Boolean Success = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentBackofficeAnswersResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isSuccess() { return Success; } public AgentBackofficeAnswersResponse setSuccess(Boolean value) { this.Success = value; return this; } } public static class AgentRegistrationAnswer { public Integer AgentRegistrationTempId = null; public Integer QuestionId = null; public Boolean AnswerYN = null; public String AnswerText = null; public Date DateCreated = null; public Integer getAgentRegistrationTempId() { return AgentRegistrationTempId; } public AgentRegistrationAnswer setAgentRegistrationTempId(Integer value) { this.AgentRegistrationTempId = value; return this; } public Integer getQuestionId() { return QuestionId; } public AgentRegistrationAnswer setQuestionId(Integer value) { this.QuestionId = value; return this; } public Boolean isAnswerYN() { return AnswerYN; } public AgentRegistrationAnswer setAnswerYN(Boolean value) { this.AnswerYN = value; return this; } public String getAnswerText() { return AnswerText; } public AgentRegistrationAnswer setAnswerText(String value) { this.AnswerText = value; return this; } public Date getDateCreated() { return DateCreated; } public AgentRegistrationAnswer setDateCreated(Date value) { this.DateCreated = value; return this; } } }