/* Options: Date: 2025-12-06 10:03:13 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: QuestionnaireCustomerInfoRequest.* //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/QuestionnaireCustomerInfo/{CustomerCheckInId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class QuestionnaireCustomerInfoRequest implements IReturn { public UUID CustomerCheckInId = null; public UUID getCustomerCheckInId() { return CustomerCheckInId; } public QuestionnaireCustomerInfoRequest setCustomerCheckInId(UUID value) { this.CustomerCheckInId = value; return this; } private static Object responseType = QuestionnaireCustomerInfoResponse.class; public Object getResponseType() { return responseType; } } public static class QuestionnaireCustomerInfoResponse { public ResponseStatus ResponseStatus = null; public QuestionnaireCustomerInfo CustomerInfo = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public QuestionnaireCustomerInfoResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public QuestionnaireCustomerInfo getCustomerInfo() { return CustomerInfo; } public QuestionnaireCustomerInfoResponse setCustomerInfo(QuestionnaireCustomerInfo value) { this.CustomerInfo = value; return this; } } public static class QuestionnaireCustomerInfo { public UUID CustomerCheckInId = null; public UUID CustomerId = null; public String CustomerName = null; public Date SubmittedTime = null; public UUID getCustomerCheckInId() { return CustomerCheckInId; } public QuestionnaireCustomerInfo setCustomerCheckInId(UUID value) { this.CustomerCheckInId = value; return this; } public UUID getCustomerId() { return CustomerId; } public QuestionnaireCustomerInfo setCustomerId(UUID value) { this.CustomerId = value; return this; } public String getCustomerName() { return CustomerName; } public QuestionnaireCustomerInfo setCustomerName(String value) { this.CustomerName = value; return this; } public Date getSubmittedTime() { return SubmittedTime; } public QuestionnaireCustomerInfo setSubmittedTime(Date value) { this.SubmittedTime = value; return this; } } }