/* Options: Date: 2025-05-06 13:59:25 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: EventOwnerTicketTypeConnectionSearchRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/EventOwnerTicketTypeConnections", "POST") public class EventOwnerTicketTypeConnectionSearchRequest : IReturn, Codable { public typealias Return = EventOwnerTicketTypeConnectionSearchResult public var eventId:Int? public var sectionId:Int? required public init(){} } public class EventOwnerTicketTypeConnectionSearchResult : Codable { public var items:[EventOwnerTicketTypeConnection] = [] public var statusCode:Int? public var message:String? required public init(){} } public class EventOwnerTicketTypeConnection : Codable { public var id:Int? public var eventSeatingSectionId:Int? public var ownerTicketTypeId:Int? public var maxTickets:Int? public var eventId:Int? required public init(){} }