/* Options: Date: 2025-05-06 14:52:40 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: EventSeatsInSectionRowsSearchRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/EventSeats/Search/Seats/RowsInSection", "POST") public class EventSeatsInSectionRowsSearchRequest : IReturn, Codable { public typealias Return = EventSeatsInSectionPerRowSearchResult public var eventSectionId:Int? required public init(){} } public class EventSeatsInSectionPerRowSearchResult : Codable { public var sectionName:String? public var rows:[EventRowAndSeatsInSection] = [] public var statusCode:Int? public var message:String? required public init(){} } public class EventSeatingRow : Codable { public var id:Int? public var eventSeatingSectionId:Int? public var currentFreeSeats:Int? public var currentBookedSeats:Int? public var currentReservedSeats:Int? public var active:Bool? public var name:String? 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 EventSeatingSeat : Codable { public var id:Int? public var eventSeatingRowId:Int? public var eventSeatingSectionId:Int? public var reservationExpires:Date? public var name:String? public var status:String? public var reservationId:String? public var eventId: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 EventRowAndSeatsInSection : Codable { public var row:EventSeatingRow? public var seats:[EventSeatingSeat] = [] required public init(){} }