/* Options: Date: 2026-07-03 06:38:08 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TicketHoldFindAndReserveRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/ticketHold/findAndReserve", Verbs="POST") public static class TicketHoldFindAndReserveRequest implements IReturn { public Integer eventId = null; public ArrayList lines = null; public String deviceId = null; public String phoneVerificationNumber = null; public String reservationTokenId = null; public Long requestUnixUTCTimeStamp = null; public RequestSignature signature = null; public Integer getEventId() { return eventId; } public TicketHoldFindAndReserveRequest setEventId(Integer value) { this.eventId = value; return this; } public ArrayList getLines() { return lines; } public TicketHoldFindAndReserveRequest setLines(ArrayList value) { this.lines = value; return this; } public String getDeviceId() { return deviceId; } public TicketHoldFindAndReserveRequest setDeviceId(String value) { this.deviceId = value; return this; } public String getPhoneVerificationNumber() { return phoneVerificationNumber; } public TicketHoldFindAndReserveRequest setPhoneVerificationNumber(String value) { this.phoneVerificationNumber = value; return this; } public String getReservationTokenId() { return reservationTokenId; } public TicketHoldFindAndReserveRequest setReservationTokenId(String value) { this.reservationTokenId = value; return this; } public Long getRequestUnixUTCTimeStamp() { return requestUnixUTCTimeStamp; } public TicketHoldFindAndReserveRequest setRequestUnixUTCTimeStamp(Long value) { this.requestUnixUTCTimeStamp = value; return this; } public RequestSignature getSignature() { return signature; } public TicketHoldFindAndReserveRequest setSignature(RequestSignature value) { this.signature = value; return this; } private static Object responseType = TicketHoldResult.class; public Object getResponseType() { return responseType; } } public static class TicketHoldResult { public Integer statusCode = null; public String message = null; public String reservationTokenId = null; public Date expiresUtc = null; public ArrayList lines = null; public ArrayList perCategory = null; public Boolean scarcity = null; public Integer getStatusCode() { return statusCode; } public TicketHoldResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public TicketHoldResult setMessage(String value) { this.message = value; return this; } public String getReservationTokenId() { return reservationTokenId; } public TicketHoldResult setReservationTokenId(String value) { this.reservationTokenId = value; return this; } public Date getExpiresUtc() { return expiresUtc; } public TicketHoldResult setExpiresUtc(Date value) { this.expiresUtc = value; return this; } public ArrayList getLines() { return lines; } public TicketHoldResult setLines(ArrayList value) { this.lines = value; return this; } public ArrayList getPerCategory() { return perCategory; } public TicketHoldResult setPerCategory(ArrayList value) { this.perCategory = value; return this; } public Boolean isScarcity() { return scarcity; } public TicketHoldResult setScarcity(Boolean value) { this.scarcity = value; return this; } } public static class RequestSignature { public String systemId = null; public String systemSecret = null; public String signature = null; public String getSystemId() { return systemId; } public RequestSignature setSystemId(String value) { this.systemId = value; return this; } public String getSystemSecret() { return systemSecret; } public RequestSignature setSystemSecret(String value) { this.systemSecret = value; return this; } public String getSignature() { return signature; } public RequestSignature setSignature(String value) { this.signature = value; return this; } } public static class HoldLineRequest { public Integer eventSeriesTicketType = null; public Integer eventSeriesOwnerTicketType = null; public Integer quantity = null; public Integer getEventSeriesTicketType() { return eventSeriesTicketType; } public HoldLineRequest setEventSeriesTicketType(Integer value) { this.eventSeriesTicketType = value; return this; } public Integer getEventSeriesOwnerTicketType() { return eventSeriesOwnerTicketType; } public HoldLineRequest setEventSeriesOwnerTicketType(Integer value) { this.eventSeriesOwnerTicketType = value; return this; } public Integer getQuantity() { return quantity; } public HoldLineRequest setQuantity(Integer value) { this.quantity = value; return this; } } public static class CategoryHoldLine { public Integer eventSeriesTicketType = null; public Integer eventSeriesOwnerTicketType = null; public Integer quantity = null; public Integer getEventSeriesTicketType() { return eventSeriesTicketType; } public CategoryHoldLine setEventSeriesTicketType(Integer value) { this.eventSeriesTicketType = value; return this; } public Integer getEventSeriesOwnerTicketType() { return eventSeriesOwnerTicketType; } public CategoryHoldLine setEventSeriesOwnerTicketType(Integer value) { this.eventSeriesOwnerTicketType = value; return this; } public Integer getQuantity() { return quantity; } public CategoryHoldLine setQuantity(Integer value) { this.quantity = value; return this; } } public static class CategoryAvailability { public Integer eventSeriesTicketType = null; public Integer eventSeriesOwnerTicketType = null; public Integer maxTickets = null; public Integer remaining = null; public Integer getEventSeriesTicketType() { return eventSeriesTicketType; } public CategoryAvailability setEventSeriesTicketType(Integer value) { this.eventSeriesTicketType = value; return this; } public Integer getEventSeriesOwnerTicketType() { return eventSeriesOwnerTicketType; } public CategoryAvailability setEventSeriesOwnerTicketType(Integer value) { this.eventSeriesOwnerTicketType = value; return this; } public Integer getMaxTickets() { return maxTickets; } public CategoryAvailability setMaxTickets(Integer value) { this.maxTickets = value; return this; } public Integer getRemaining() { return remaining; } public CategoryAvailability setRemaining(Integer value) { this.remaining = value; return this; } } }