/* Options: Date: 2025-12-06 06:27:59 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: CustomerCheckinsPut.* //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/CustomerCheckins", Verbs="PUT") public static class CustomerCheckinsPut implements IReturn { public UUID ApiKey = null; public ArrayList Checkins = new ArrayList(); public UUID getApiKey() { return ApiKey; } public CustomerCheckinsPut setApiKey(UUID value) { this.ApiKey = value; return this; } public ArrayList getCheckins() { return Checkins; } public CustomerCheckinsPut setCheckins(ArrayList value) { this.Checkins = value; return this; } private static Object responseType = CustomerCheckinsPutResponse.class; public Object getResponseType() { return responseType; } } public static class CustomerCheckinsPutResponse { public ResponseStatus ResponseStatus = null; public Boolean Success = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public CustomerCheckinsPutResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isSuccess() { return Success; } public CustomerCheckinsPutResponse setSuccess(Boolean value) { this.Success = value; return this; } } public static class CustomerCheckinObject { public UUID Id = null; public UUID LineId = null; public UUID CustomerId = null; public UUID EmployeeId = null; public UUID LocationId = null; public UUID StationId = null; public Date SignInTime = null; public Date AdjustedSignInTime = null; public Boolean SendReminders = null; public Integer Status = null; public Integer TaskTime = null; public Boolean Completed = null; public Date CompletedTime = null; public Boolean QuestionnaireSubmitted = null; public ArrayList LineIds = new ArrayList(); public UUID getId() { return Id; } public CustomerCheckinObject setId(UUID value) { this.Id = value; return this; } public UUID getLineId() { return LineId; } public CustomerCheckinObject setLineId(UUID value) { this.LineId = value; return this; } public UUID getCustomerId() { return CustomerId; } public CustomerCheckinObject setCustomerId(UUID value) { this.CustomerId = value; return this; } public UUID getEmployeeId() { return EmployeeId; } public CustomerCheckinObject setEmployeeId(UUID value) { this.EmployeeId = value; return this; } public UUID getLocationId() { return LocationId; } public CustomerCheckinObject setLocationId(UUID value) { this.LocationId = value; return this; } public UUID getStationId() { return StationId; } public CustomerCheckinObject setStationId(UUID value) { this.StationId = value; return this; } public Date getSignInTime() { return SignInTime; } public CustomerCheckinObject setSignInTime(Date value) { this.SignInTime = value; return this; } public Date getAdjustedSignInTime() { return AdjustedSignInTime; } public CustomerCheckinObject setAdjustedSignInTime(Date value) { this.AdjustedSignInTime = value; return this; } public Boolean isSendReminders() { return SendReminders; } public CustomerCheckinObject setSendReminders(Boolean value) { this.SendReminders = value; return this; } public Integer getStatus() { return Status; } public CustomerCheckinObject setStatus(Integer value) { this.Status = value; return this; } public Integer getTaskTime() { return TaskTime; } public CustomerCheckinObject setTaskTime(Integer value) { this.TaskTime = value; return this; } public Boolean isCompleted() { return Completed; } public CustomerCheckinObject setCompleted(Boolean value) { this.Completed = value; return this; } public Date getCompletedTime() { return CompletedTime; } public CustomerCheckinObject setCompletedTime(Date value) { this.CompletedTime = value; return this; } public Boolean isQuestionnaireSubmitted() { return QuestionnaireSubmitted; } public CustomerCheckinObject setQuestionnaireSubmitted(Boolean value) { this.QuestionnaireSubmitted = value; return this; } public ArrayList getLineIds() { return LineIds; } public CustomerCheckinObject setLineIds(ArrayList value) { this.LineIds = value; return this; } } }