/* Options: Date: 2026-05-19 05:38:55 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: EventSeatingBlockedNotesRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/EventSeatingBlockedNotes/{EventId}", "GET") public class EventSeatingBlockedNotesRequest : IReturn, Codable { public typealias Return = EventSeatingBlockedNotesResult public var eventId:Int? required public init(){} } public class EventSeatingBlockedNotesResult : Codable { public var statusCode:Int? public var message:String? public var groups:[EventSeatingBlockedNoteGroup] = [] 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? public var blockedNote:String? required public init(){} } public class EventSeatingBlockedNoteGroup : Codable { public var blockedNote:String? public var seatCount:Int? public var seats:[EventSeatingSeat] = [] required public init(){} }