/* Options: Date: 2025-05-06 16:28:56 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: VenueSeatingArrangementRowsInSectionSearchRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/VenueSeatingArrangement/Search/Seats/RowsInSection", "POST") public class VenueSeatingArrangementRowsInSectionSearchRequest : IReturn, Codable { public typealias Return = VenueSeatingArrangementSeatsInSectionPerRowSearchResult public var sectionId:Int? required public init(){} } public class VenueSeatingArrangementSeatsInSectionPerRowSearchResult : Codable { public var sectionName:String? public var rows:[VenueSeatingArrangementRowAndSeatsInSection] = [] public var statusCode:Int? public var message:String? required public init(){} } public class VenueSeatingArrangementRow : Codable { public var id:Int? public var name:String? public var arrangementSectionId:Int? public var imageUrl:String? public var positionX:Double? public var positionY:Double? public var rotation:Double? public var viewType:String? public var sortOrder:Double? required public init(){} } public class VenueSeatingArrangementSeat : Codable { public var id:Int? public var name:String? public var arrangementRowId:Int? public var status:String? public var arrangementSectionId:Int? public var positionX:Double? public var positionY:Double? public var rotation:Double? public var viewType:String? public var sortOrder:Double? required public init(){} } public class VenueSeatingArrangementRowAndSeatsInSection : Codable { public var row:VenueSeatingArrangementRow? public var seats:[VenueSeatingArrangementSeat] = [] required public init(){} }