/* Options: Date: 2025-05-06 14:42:15 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: EventRowsSearchRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/EventSeats/Search/Rows", Verbs="POST") open class EventRowsSearchRequest : IReturn { var eventSectionId:Int? = null companion object { private val responseType = EventRowsSearchResult::class.java } override fun getResponseType(): Any? = EventRowsSearchRequest.responseType } open class EventRowsSearchResult { var items:ArrayList = ArrayList() var statusCode:Int? = null var message:String? = null } open class EventSeatingRow { var id:Int? = null var eventSeatingSectionId:Int? = null var currentFreeSeats:Int? = null var currentBookedSeats:Int? = null var currentReservedSeats:Int? = null var active:Boolean? = null var name:String? = null var imageUrl:String? = null var positionX:BigDecimal? = null var positionY:BigDecimal? = null var rotation:BigDecimal? = null var viewType:String? = null var sortOrder:BigDecimal? = null }