/* Options: Date: 2025-05-06 15:24:20 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: OwnerSeriesTicketSeatingSectionRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/seriesTicketOwnerSeatingSection", Verbs="GET PUT POST") open class OwnerSeriesTicketSeatingSectionRequest : IReturn { var ticketSeatingSection:EventSeriesTicketOwnerSeatingSection? = null companion object { private val responseType = OwnerSeriesTicketSeatingSectionResult::class.java } override fun getResponseType(): Any? = OwnerSeriesTicketSeatingSectionRequest.responseType } open class OwnerSeriesTicketSeatingSectionResult { var ticketSeatingSection:EventSeriesTicketOwnerSeatingSection? = null var statusCode:Int? = null var message:String? = null } open class EventSeriesTicketOwnerSeatingSection { var id:Int? = null var eventSeriesTicketTypeId:Int? = null var eventSeriesOwnerSeatingSectionId:Int? = null var ownerId:Int? = null var eventSeriesTicketAllowed:Boolean? = null }