/* Options: Date: 2025-12-06 10:03:14 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: SurveyResponseRequest.* //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/Survey/GiftCard/Answer", Verbs="POST,OPTIONS") public static class SurveyResponseRequest implements IReturn { public UUID SurveyGuid = null; public ArrayList Responses = new ArrayList(); public UUID getSurveyGuid() { return SurveyGuid; } public SurveyResponseRequest setSurveyGuid(UUID value) { this.SurveyGuid = value; return this; } public ArrayList getResponses() { return Responses; } public SurveyResponseRequest setResponses(ArrayList value) { this.Responses = value; return this; } private static Object responseType = SurveyResponseResponse.class; public Object getResponseType() { return responseType; } } public static class SurveyResponseResponse { public Boolean Success = null; public ResponseStatus ResponseStatus = null; public Boolean isSuccess() { return Success; } public SurveyResponseResponse setSuccess(Boolean value) { this.Success = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public SurveyResponseResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class SurveyQuestionResponse { public Integer QuestionId = null; public String Response = null; public Integer getQuestionId() { return QuestionId; } public SurveyQuestionResponse setQuestionId(Integer value) { this.QuestionId = value; return this; } public String getResponse() { return Response; } public SurveyQuestionResponse setResponse(String value) { this.Response = value; return this; } } }