/* Options: Date: 2025-05-06 13:17:02 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: EventOwnerTicketTypeConnectionSearchRequest.* //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="/EventOwnerTicketTypeConnections", Verbs="POST") public static class EventOwnerTicketTypeConnectionSearchRequest implements IReturn { public Integer eventId = null; public Integer sectionId = null; public Integer getEventId() { return eventId; } public EventOwnerTicketTypeConnectionSearchRequest setEventId(Integer value) { this.eventId = value; return this; } public Integer getSectionId() { return sectionId; } public EventOwnerTicketTypeConnectionSearchRequest setSectionId(Integer value) { this.sectionId = value; return this; } private static Object responseType = EventOwnerTicketTypeConnectionSearchResult.class; public Object getResponseType() { return responseType; } } public static class EventOwnerTicketTypeConnectionSearchResult { public ArrayList items = null; public Integer statusCode = null; public String message = null; public ArrayList getItems() { return items; } public EventOwnerTicketTypeConnectionSearchResult setItems(ArrayList value) { this.items = value; return this; } public Integer getStatusCode() { return statusCode; } public EventOwnerTicketTypeConnectionSearchResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public EventOwnerTicketTypeConnectionSearchResult setMessage(String value) { this.message = value; return this; } } public static class EventOwnerTicketTypeConnection { public Integer id = null; public Integer eventSeatingSectionId = null; public Integer ownerTicketTypeId = null; public Integer maxTickets = null; public Integer eventId = null; public Integer getId() { return id; } public EventOwnerTicketTypeConnection setId(Integer value) { this.id = value; return this; } public Integer getEventSeatingSectionId() { return eventSeatingSectionId; } public EventOwnerTicketTypeConnection setEventSeatingSectionId(Integer value) { this.eventSeatingSectionId = value; return this; } public Integer getOwnerTicketTypeId() { return ownerTicketTypeId; } public EventOwnerTicketTypeConnection setOwnerTicketTypeId(Integer value) { this.ownerTicketTypeId = value; return this; } public Integer getMaxTickets() { return maxTickets; } public EventOwnerTicketTypeConnection setMaxTickets(Integer value) { this.maxTickets = value; return this; } public Integer getEventId() { return eventId; } public EventOwnerTicketTypeConnection setEventId(Integer value) { this.eventId = value; return this; } } }