/* Options: Date: 2025-05-06 14:00:45 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: OwnerSeriesTicketSeatingSectionRequest.* //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="/seriesTicketOwnerSeatingSection", Verbs="GET PUT POST") public static class OwnerSeriesTicketSeatingSectionRequest implements IReturn { public EventSeriesTicketOwnerSeatingSection ticketSeatingSection = null; public EventSeriesTicketOwnerSeatingSection getTicketSeatingSection() { return ticketSeatingSection; } public OwnerSeriesTicketSeatingSectionRequest setTicketSeatingSection(EventSeriesTicketOwnerSeatingSection value) { this.ticketSeatingSection = value; return this; } private static Object responseType = OwnerSeriesTicketSeatingSectionResult.class; public Object getResponseType() { return responseType; } } public static class OwnerSeriesTicketSeatingSectionResult { public EventSeriesTicketOwnerSeatingSection ticketSeatingSection = null; public Integer statusCode = null; public String message = null; public EventSeriesTicketOwnerSeatingSection getTicketSeatingSection() { return ticketSeatingSection; } public OwnerSeriesTicketSeatingSectionResult setTicketSeatingSection(EventSeriesTicketOwnerSeatingSection value) { this.ticketSeatingSection = value; return this; } public Integer getStatusCode() { return statusCode; } public OwnerSeriesTicketSeatingSectionResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public OwnerSeriesTicketSeatingSectionResult 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; } } }