/* Options: Date: 2025-12-11 09:09:52 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reservation.api.dev.86degrees.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FindBookingRate.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class FindBookingRate extends ApiServiceRequest implements IReturn { public Integer facilityId = null; public Integer bookingUserId = null; public ArrayList requestedSlots = null; public Boolean isNew = null; public Boolean isGuest = null; public Integer getFacilityId() { return facilityId; } public FindBookingRate setFacilityId(Integer value) { this.facilityId = value; return this; } public Integer getBookingUserId() { return bookingUserId; } public FindBookingRate setBookingUserId(Integer value) { this.bookingUserId = value; return this; } public ArrayList getRequestedSlots() { return requestedSlots; } public FindBookingRate setRequestedSlots(ArrayList value) { this.requestedSlots = value; return this; } public Boolean getIsNew() { return isNew; } public FindBookingRate setIsNew(Boolean value) { this.isNew = value; return this; } public Boolean getIsGuest() { return isGuest; } public FindBookingRate setIsGuest(Boolean value) { this.isGuest = value; return this; } private static Object responseType = FindBookingRateResponse.class; public Object getResponseType() { return responseType; } } public static class FindBookingRateResponse extends ApiServiceResponse { public ArrayList updatedSlot = null; public ArrayList rates = null; public Boolean wasMerge = null; public ArrayList getUpdatedSlot() { return updatedSlot; } public FindBookingRateResponse setUpdatedSlot(ArrayList value) { this.updatedSlot = value; return this; } public ArrayList getRates() { return rates; } public FindBookingRateResponse setRates(ArrayList value) { this.rates = value; return this; } public Boolean isWasMerge() { return wasMerge; } public FindBookingRateResponse setWasMerge(Boolean value) { this.wasMerge = value; return this; } } public static class SlotData { public String start = null; public String end = null; public SlotStatus status = null; public Integer bookingId = null; public Boolean remindStart = null; public Boolean remind30Mins = null; public Boolean remind1Hour = null; public Boolean remind6Hours = null; public Boolean remind12Hours = null; public Boolean remind1Day = null; public Boolean remind1Week = null; public BigDecimal billableAmount = null; public String bookedByName = null; public Double billableHours = null; public Double slotLength = null; public GuestData userData = null; public String extraRequirements = null; public String getStart() { return start; } public SlotData setStart(String value) { this.start = value; return this; } public String getEnd() { return end; } public SlotData setEnd(String value) { this.end = value; return this; } public SlotStatus getStatus() { return status; } public SlotData setStatus(SlotStatus value) { this.status = value; return this; } public Integer getBookingId() { return bookingId; } public SlotData setBookingId(Integer value) { this.bookingId = value; return this; } public Boolean isRemindStart() { return remindStart; } public SlotData setRemindStart(Boolean value) { this.remindStart = value; return this; } public Boolean isRemind30Mins() { return remind30Mins; } public SlotData setRemind30Mins(Boolean value) { this.remind30Mins = value; return this; } public Boolean isRemind1Hour() { return remind1Hour; } public SlotData setRemind1Hour(Boolean value) { this.remind1Hour = value; return this; } public Boolean isRemind6Hours() { return remind6Hours; } public SlotData setRemind6Hours(Boolean value) { this.remind6Hours = value; return this; } public Boolean isRemind12Hours() { return remind12Hours; } public SlotData setRemind12Hours(Boolean value) { this.remind12Hours = value; return this; } public Boolean isRemind1Day() { return remind1Day; } public SlotData setRemind1Day(Boolean value) { this.remind1Day = value; return this; } public Boolean isRemind1Week() { return remind1Week; } public SlotData setRemind1Week(Boolean value) { this.remind1Week = value; return this; } public BigDecimal getBillableAmount() { return billableAmount; } public SlotData setBillableAmount(BigDecimal value) { this.billableAmount = value; return this; } public String getBookedByName() { return bookedByName; } public SlotData setBookedByName(String value) { this.bookedByName = value; return this; } public Double getBillableHours() { return billableHours; } public SlotData setBillableHours(Double value) { this.billableHours = value; return this; } public Double getSlotLength() { return slotLength; } public SlotData setSlotLength(Double value) { this.slotLength = value; return this; } public GuestData getUserData() { return userData; } public SlotData setUserData(GuestData value) { this.userData = value; return this; } public String getExtraRequirements() { return extraRequirements; } public SlotData setExtraRequirements(String value) { this.extraRequirements = value; return this; } } public static class GuestData { public String name = null; public String emailAddress = null; public String mobileNumber = null; public ArrayList userCustomFields = null; public Boolean isAlreadyUser = null; public Integer systemUserId = null; public String getName() { return name; } public GuestData setName(String value) { this.name = value; return this; } public String getEmailAddress() { return emailAddress; } public GuestData setEmailAddress(String value) { this.emailAddress = value; return this; } public String getMobileNumber() { return mobileNumber; } public GuestData setMobileNumber(String value) { this.mobileNumber = value; return this; } public ArrayList getUserCustomFields() { return userCustomFields; } public GuestData setUserCustomFields(ArrayList value) { this.userCustomFields = value; return this; } public Boolean getIsAlreadyUser() { return isAlreadyUser; } public GuestData setIsAlreadyUser(Boolean value) { this.isAlreadyUser = value; return this; } public Integer getSystemUserId() { return systemUserId; } public GuestData setSystemUserId(Integer value) { this.systemUserId = value; return this; } } public static class ApiServiceRequest implements IServiceRequest, IHasApiKey, IHasDeviceInfo { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) public String apiKey = null; /** * Latitude of the user making this request */ @ApiMember(DataType="double", Description="Latitude of the user making this request") public Double latitude = null; /** * Longitude of the user making this request */ @ApiMember(DataType="double", Description="Longitude of the user making this request") public Double longitude = null; public String getApiKey() { return apiKey; } public ApiServiceRequest setApiKey(String value) { this.apiKey = value; return this; } public Double getLatitude() { return latitude; } public ApiServiceRequest setLatitude(Double value) { this.latitude = value; return this; } public Double getLongitude() { return longitude; } public ApiServiceRequest setLongitude(Double value) { this.longitude = value; return this; } } public static interface IServiceRequest { } public static interface IHasApiKey { public String apiKey = null; } public static interface IHasDeviceInfo { } public static class UserCustomFieldData { public UUID id = null; public String value = null; public String name = null; public Boolean optional = null; public UUID getId() { return id; } public UserCustomFieldData setId(UUID value) { this.id = value; return this; } public String getValue() { return value; } public UserCustomFieldData setValue(String value) { this.value = value; return this; } public String getName() { return name; } public UserCustomFieldData setName(String value) { this.name = value; return this; } public Boolean isOptional() { return optional; } public UserCustomFieldData setOptional(Boolean value) { this.optional = value; return this; } } public static enum SlotStatus { @SerializedName("0") Available(0), @SerializedName("1") Closed(1), @SerializedName("2") Booked(2), @SerializedName("3") UserBooked(3), @SerializedName("4") GroupBooked(4), @SerializedName("5") ToBook(5); private final int value; SlotStatus(final int intValue) { value = intValue; } public int getValue() { return value; } } public static class ApiServiceResponse implements IServiceResponse { public String description = null; public String heading = null; public Boolean wasSuccessful = null; public Object modelState = null; public String getDescription() { return description; } public ApiServiceResponse setDescription(String value) { this.description = value; return this; } public String getHeading() { return heading; } public ApiServiceResponse setHeading(String value) { this.heading = value; return this; } public Boolean isWasSuccessful() { return wasSuccessful; } public ApiServiceResponse setWasSuccessful(Boolean value) { this.wasSuccessful = value; return this; } public Object getModelState() { return modelState; } public ApiServiceResponse setModelState(Object value) { this.modelState = value; return this; } } }