/* Options: Date: 2025-12-06 07:30:01 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: LineAnswersRequest.* //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/LineAnswers", Verbs="POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/LineAnswers/{CustomerCheckInId}", Verbs="GET, OPTIONS") public static class LineAnswersRequest implements IReturn { public ArrayList LineAnswers = new ArrayList(); public UUID CustomerCheckInId = null; public ArrayList getLineAnswers() { return LineAnswers; } public LineAnswersRequest setLineAnswers(ArrayList value) { this.LineAnswers = value; return this; } public UUID getCustomerCheckInId() { return CustomerCheckInId; } public LineAnswersRequest setCustomerCheckInId(UUID value) { this.CustomerCheckInId = value; return this; } private static Object responseType = LineQuestionsResponse.class; public Object getResponseType() { return responseType; } } public static class LineQuestionsResponse { public ResponseStatus ResponseStatus = null; public ArrayList LineQuestions = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public LineQuestionsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getLineQuestions() { return LineQuestions; } public LineQuestionsResponse setLineQuestions(ArrayList value) { this.LineQuestions = value; return this; } } public static class LineAnswer { public Integer Id = null; public UUID CustomerCheckInId = null; public Integer LineQuestionId = null; public String Question = null; public String Answer = null; public Integer getId() { return Id; } public LineAnswer setId(Integer value) { this.Id = value; return this; } public UUID getCustomerCheckInId() { return CustomerCheckInId; } public LineAnswer setCustomerCheckInId(UUID value) { this.CustomerCheckInId = value; return this; } public Integer getLineQuestionId() { return LineQuestionId; } public LineAnswer setLineQuestionId(Integer value) { this.LineQuestionId = value; return this; } public String getQuestion() { return Question; } public LineAnswer setQuestion(String value) { this.Question = value; return this; } public String getAnswer() { return Answer; } public LineAnswer setAnswer(String value) { this.Answer = value; return this; } } public static class LineQuestion { public Integer Id = null; public UUID CustomerCheckInId = null; public UUID LineId = null; public String Question = null; public String Answer = null; public Boolean Active = null; public Integer getId() { return Id; } public LineQuestion setId(Integer value) { this.Id = value; return this; } public UUID getCustomerCheckInId() { return CustomerCheckInId; } public LineQuestion setCustomerCheckInId(UUID value) { this.CustomerCheckInId = value; return this; } public UUID getLineId() { return LineId; } public LineQuestion setLineId(UUID value) { this.LineId = value; return this; } public String getQuestion() { return Question; } public LineQuestion setQuestion(String value) { this.Question = value; return this; } public String getAnswer() { return Answer; } public LineQuestion setAnswer(String value) { this.Answer = value; return this; } public Boolean isActive() { return Active; } public LineQuestion setActive(Boolean value) { this.Active = value; return this; } } }