/* 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: TicketHoldAvailabilityRequest.* //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/availability", Verbs="GET") public static class TicketHoldAvailabilityRequest implements IReturn { public Integer eventId = null; public Integer getEventId() { return eventId; } public TicketHoldAvailabilityRequest setEventId(Integer value) { this.eventId = value; return this; } private static Object responseType = TicketHoldAvailabilityResult.class; public Object getResponseType() { return responseType; } } public static class TicketHoldAvailabilityResult { public Integer statusCode = null; public String message = null; public ArrayList perCategory = null; public Boolean scarcity = null; public Integer getStatusCode() { return statusCode; } public TicketHoldAvailabilityResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public TicketHoldAvailabilityResult setMessage(String value) { this.message = value; return this; } public ArrayList getPerCategory() { return perCategory; } public TicketHoldAvailabilityResult setPerCategory(ArrayList value) { this.perCategory = value; return this; } public Boolean isScarcity() { return scarcity; } public TicketHoldAvailabilityResult setScarcity(Boolean value) { this.scarcity = 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; } } }