/* Options: Date: 2025-05-06 14:21:53 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: VenueSeriesTicketTypeConnectionSearchRequest.* //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="/VenueSeriesTicketTypeConnections", Verbs="POST") public static class VenueSeriesTicketTypeConnectionSearchRequest implements IReturn { public Integer venueId = null; public Integer ownerId = null; public Integer sectionId = null; public Integer ticketTypeId = null; public Integer getVenueId() { return venueId; } public VenueSeriesTicketTypeConnectionSearchRequest setVenueId(Integer value) { this.venueId = value; return this; } public Integer getOwnerId() { return ownerId; } public VenueSeriesTicketTypeConnectionSearchRequest setOwnerId(Integer value) { this.ownerId = value; return this; } public Integer getSectionId() { return sectionId; } public VenueSeriesTicketTypeConnectionSearchRequest setSectionId(Integer value) { this.sectionId = value; return this; } public Integer getTicketTypeId() { return ticketTypeId; } public VenueSeriesTicketTypeConnectionSearchRequest setTicketTypeId(Integer value) { this.ticketTypeId = value; return this; } private static Object responseType = VenueSeriesTicketTypeConnectionSearchResult.class; public Object getResponseType() { return responseType; } } public static class VenueSeriesTicketTypeConnectionSearchResult { public ArrayList items = null; public Integer statusCode = null; public String message = null; public ArrayList getItems() { return items; } public VenueSeriesTicketTypeConnectionSearchResult setItems(ArrayList value) { this.items = value; return this; } public Integer getStatusCode() { return statusCode; } public VenueSeriesTicketTypeConnectionSearchResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public VenueSeriesTicketTypeConnectionSearchResult setMessage(String value) { this.message = value; return this; } } public static class VenueSeriesTicketTypeConnection { public Integer id = null; public Integer venueSeatingSectionId = null; public Integer seriesTicketId = null; public Integer maxTickets = null; public Integer venueId = null; public Integer getId() { return id; } public VenueSeriesTicketTypeConnection setId(Integer value) { this.id = value; return this; } public Integer getVenueSeatingSectionId() { return venueSeatingSectionId; } public VenueSeriesTicketTypeConnection setVenueSeatingSectionId(Integer value) { this.venueSeatingSectionId = value; return this; } public Integer getSeriesTicketId() { return seriesTicketId; } public VenueSeriesTicketTypeConnection setSeriesTicketId(Integer value) { this.seriesTicketId = value; return this; } public Integer getMaxTickets() { return maxTickets; } public VenueSeriesTicketTypeConnection setMaxTickets(Integer value) { this.maxTickets = value; return this; } public Integer getVenueId() { return venueId; } public VenueSeriesTicketTypeConnection setVenueId(Integer value) { this.venueId = value; return this; } } }