/* Options: Date: 2025-05-06 16:38:30 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: VenueSeatingArrangementSectionsSearchRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/VenueSeatingArrangementSections", "POST") public class VenueSeatingArrangementSectionsSearchRequest : IReturn, Codable { public typealias Return = VenueSeatingArrangementSectionsResult public var seatingArrangementId:Int? required public init(){} } public class VenueSeatingArrangementSectionsResult : Codable { public var items:[VenueSeatingArrangementSection] = [] public var statusCode:Int? public var message:String? required public init(){} } public class VenueSeatingArrangementSection : Codable { public var id:Int? public var name:String? public var venueSeatingArrangementId:Int? public var venueId:Int? public var isActive:Bool? public var maxTickets:Int? public var timestampCreated:Date? public var hasRows:Bool? public var hasSeats:Bool? public var rowsAreAlphabetical:Bool? public var seatsAreAlphabetical:Bool? public var seatStart:String? public var rowStart:String? public var seatSkips:Int? public var rowSkips: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(){} }