/* Options: Date: 2025-12-06 05:45:36 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: LineQuestionsRequest.* //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/LineQuestions", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/LineQuestions/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/LineQuestions/Line/{LineId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/LineQuestions/Line/Questionnaire/{CustomerCheckInId}/{RO}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class LineQuestionsRequest implements IReturn { public Integer Id = null; public UUID LineId = null; public UUID CustomerCheckInId = null; public Boolean RO = null; public ArrayList LineQuestions = new ArrayList(); public Integer getId() { return Id; } public LineQuestionsRequest setId(Integer value) { this.Id = value; return this; } public UUID getLineId() { return LineId; } public LineQuestionsRequest setLineId(UUID value) { this.LineId = value; return this; } public UUID getCustomerCheckInId() { return CustomerCheckInId; } public LineQuestionsRequest setCustomerCheckInId(UUID value) { this.CustomerCheckInId = value; return this; } public Boolean isRo() { return RO; } public LineQuestionsRequest setRo(Boolean value) { this.RO = value; return this; } public ArrayList getLineQuestions() { return LineQuestions; } public LineQuestionsRequest setLineQuestions(ArrayList value) { this.LineQuestions = 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 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; } } }