/* Options: Date: 2025-05-06 16:20:38 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: VenueSeatingArrangementRowsInSectionSearchRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/VenueSeatingArrangement/Search/Seats/RowsInSection", Verbs="POST") open class VenueSeatingArrangementRowsInSectionSearchRequest : IReturn { var sectionId:Int? = null companion object { private val responseType = VenueSeatingArrangementSeatsInSectionPerRowSearchResult::class.java } override fun getResponseType(): Any? = VenueSeatingArrangementRowsInSectionSearchRequest.responseType } open class VenueSeatingArrangementSeatsInSectionPerRowSearchResult { var sectionName:String? = null var rows:ArrayList = ArrayList() var statusCode:Int? = null var message:String? = null } open class VenueSeatingArrangementRow { var id:Int? = null var name:String? = null var arrangementSectionId:Int? = 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 } open class VenueSeatingArrangementSeat { var id:Int? = null var name:String? = null var arrangementRowId:Int? = null var status:String? = null var arrangementSectionId:Int? = null var positionX:BigDecimal? = null var positionY:BigDecimal? = null var rotation:BigDecimal? = null var viewType:String? = null var sortOrder:BigDecimal? = null } open class VenueSeatingArrangementRowAndSeatsInSection { var row:VenueSeatingArrangementRow? = null var seats:ArrayList = ArrayList() }