/* Options: Date: 2025-12-06 08:39:50 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: GiftCardSurveyRequest.* //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/{UID}", Verbs="GET") public static class GiftCardSurveyRequest implements IReturn { public UUID UID = null; public UUID getUid() { return UID; } public GiftCardSurveyRequest setUid(UUID value) { this.UID = value; return this; } private static Object responseType = GiftCardSurveyResponse.class; public Object getResponseType() { return responseType; } } public static class GiftCardSurveyResponse { public GiftCardSurvey Survey = null; public ResponseStatus ResponseStatus = null; public GiftCardSurvey getSurvey() { return Survey; } public GiftCardSurveyResponse setSurvey(GiftCardSurvey value) { this.Survey = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public GiftCardSurveyResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class GiftCardSurvey extends Survey { public Integer GiftCardId = null; public ArrayList GiftCards = new ArrayList(); public Integer getGiftCardId() { return GiftCardId; } public GiftCardSurvey setGiftCardId(Integer value) { this.GiftCardId = value; return this; } public ArrayList getGiftCards() { return GiftCards; } public GiftCardSurvey setGiftCards(ArrayList value) { this.GiftCards = value; return this; } } public static class SurveyQuestion { public Integer QuestionId = null; public String QuestionType = null; public String HTML = null; public String DependsOn = null; public Integer getQuestionId() { return QuestionId; } public SurveyQuestion setQuestionId(Integer value) { this.QuestionId = value; return this; } public String getQuestionType() { return QuestionType; } public SurveyQuestion setQuestionType(String value) { this.QuestionType = value; return this; } public String getHtml() { return HTML; } public SurveyQuestion setHtml(String value) { this.HTML = value; return this; } public String getDependsOn() { return DependsOn; } public SurveyQuestion setDependsOn(String value) { this.DependsOn = value; return this; } } public static class Survey { public Integer SurveyId = null; public Integer ContactId = null; public ArrayList Questions = new ArrayList(); public Integer getSurveyId() { return SurveyId; } public Survey setSurveyId(Integer value) { this.SurveyId = value; return this; } public Integer getContactId() { return ContactId; } public Survey setContactId(Integer value) { this.ContactId = value; return this; } public ArrayList getQuestions() { return Questions; } public Survey setQuestions(ArrayList value) { this.Questions = value; return this; } } }