/* Options: Date: 2025-05-06 14:12:59 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: OwnerSeriesTicketSeatingSectionsSearchRequest.* //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="/seriesTicketOwnerSeatingSections/Search", Verbs="POST") public static class OwnerSeriesTicketSeatingSectionsSearchRequest implements IReturn { public Integer ownerId = null; public Integer getOwnerId() { return ownerId; } public OwnerSeriesTicketSeatingSectionsSearchRequest setOwnerId(Integer value) { this.ownerId = value; return this; } private static Object responseType = OwnerSeriesTicketSeatingSectionsSearchResult.class; public Object getResponseType() { return responseType; } } public static class OwnerSeriesTicketSeatingSectionsSearchResult { public ArrayList ticketSeatingSections = null; public Integer statusCode = null; public String message = null; public ArrayList getTicketSeatingSections() { return ticketSeatingSections; } public OwnerSeriesTicketSeatingSectionsSearchResult setTicketSeatingSections(ArrayList value) { this.ticketSeatingSections = value; return this; } public Integer getStatusCode() { return statusCode; } public OwnerSeriesTicketSeatingSectionsSearchResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public OwnerSeriesTicketSeatingSectionsSearchResult setMessage(String value) { this.message = value; return this; } } public static class EventSeriesTicketOwnerSeatingSection { public Integer id = null; public Integer eventSeriesTicketTypeId = null; public Integer eventSeriesOwnerSeatingSectionId = null; public Integer ownerId = null; public Boolean eventSeriesTicketAllowed = null; public Integer getId() { return id; } public EventSeriesTicketOwnerSeatingSection setId(Integer value) { this.id = value; return this; } public Integer getEventSeriesTicketTypeId() { return eventSeriesTicketTypeId; } public EventSeriesTicketOwnerSeatingSection setEventSeriesTicketTypeId(Integer value) { this.eventSeriesTicketTypeId = value; return this; } public Integer getEventSeriesOwnerSeatingSectionId() { return eventSeriesOwnerSeatingSectionId; } public EventSeriesTicketOwnerSeatingSection setEventSeriesOwnerSeatingSectionId(Integer value) { this.eventSeriesOwnerSeatingSectionId = value; return this; } public Integer getOwnerId() { return ownerId; } public EventSeriesTicketOwnerSeatingSection setOwnerId(Integer value) { this.ownerId = value; return this; } public Boolean isEventSeriesTicketAllowed() { return eventSeriesTicketAllowed; } public EventSeriesTicketOwnerSeatingSection setEventSeriesTicketAllowed(Boolean value) { this.eventSeriesTicketAllowed = value; return this; } } }