/* Options: Date: 2025-05-06 14:48:44 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: OwnerSeatingSectionRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/ownerSeatingSection", Verbs="GET PUT POST") open class OwnerSeatingSectionRequest : IReturn { var seatingSection:EventSeriesOwnerSeatingSection? = null companion object { private val responseType = OwnerSeatingSectionResult::class.java } override fun getResponseType(): Any? = OwnerSeatingSectionRequest.responseType } open class OwnerSeatingSectionResult { var seatingSection:EventSeriesOwnerSeatingSection? = null var statusCode:Int? = null var message:String? = null } open class EventSeriesOwnerSeatingSection { var id:Int? = null var name:String? = null var seriesId:Int? = null var ownerId:Int? = null var locationId:Int? = null var isActive:Boolean? = null var maxTickets:Int? = null var timestampCreated:Date? = null var hasRows:Boolean? = null var hasSeats:Boolean? = null var rowsAreAlphabetical:Boolean? = null var seatsAreAlphabetical:Boolean? = null var seatStart:String? = null var rowStart:String? = null var seatSkips:Int? = null var rowSkips:Int? = null }