/* Options: Date: 2025-12-06 09:21:18 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: SurveyAdminRequest.* //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/SurveyAdmin/GiftCard", Verbs="GET,OPTIONS") public static class SurveyAdminRequest implements IReturn { public Integer SurveyId = null; public ArrayList Answers = new ArrayList(); public Integer getSurveyId() { return SurveyId; } public SurveyAdminRequest setSurveyId(Integer value) { this.SurveyId = value; return this; } public ArrayList getAnswers() { return Answers; } public SurveyAdminRequest setAnswers(ArrayList value) { this.Answers = value; return this; } private static Object responseType = SurveyAdminResponse.class; public Object getResponseType() { return responseType; } } public static class SurveyAdminResponse { public ArrayList Answers = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getAnswers() { return Answers; } public SurveyAdminResponse setAnswers(ArrayList value) { this.Answers = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public SurveyAdminResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class SurveyResponse { public String ContactFullName = null; public Integer SurveyId = null; public Integer ContactId = null; public String ContactName = null; public Integer AgentId = null; public String AgentName = null; public String Response = null; public String ResponseCode = null; public Date DateAnswered = null; public String getContactFullName() { return ContactFullName; } public SurveyResponse setContactFullName(String value) { this.ContactFullName = value; return this; } public Integer getSurveyId() { return SurveyId; } public SurveyResponse setSurveyId(Integer value) { this.SurveyId = value; return this; } public Integer getContactId() { return ContactId; } public SurveyResponse setContactId(Integer value) { this.ContactId = value; return this; } public String getContactName() { return ContactName; } public SurveyResponse setContactName(String value) { this.ContactName = value; return this; } public Integer getAgentId() { return AgentId; } public SurveyResponse setAgentId(Integer value) { this.AgentId = value; return this; } public String getAgentName() { return AgentName; } public SurveyResponse setAgentName(String value) { this.AgentName = value; return this; } public String getResponse() { return Response; } public SurveyResponse setResponse(String value) { this.Response = value; return this; } public String getResponseCode() { return ResponseCode; } public SurveyResponse setResponseCode(String value) { this.ResponseCode = value; return this; } public Date getDateAnswered() { return DateAnswered; } public SurveyResponse setDateAnswered(Date value) { this.DateAnswered = value; return this; } } }