/* Options: Date: 2025-05-06 14:38:15 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: OwnerTicketTypeSearchRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/ownerTicketType/Search", "POST") public class OwnerTicketTypeSearchRequest : IReturn, Codable { public typealias Return = OwnerTicketTypeResult public var ownerId:Int? public var ksiOwnerid:String? required public init(){} } public class OwnerTicketTypeResult : Codable { public var ticketType:EventSeriesOwnerTicketType? public var statusCode:Int? public var message:String? required public init(){} } public class EventSeriesOwnerTicketType : Codable { public var id:Int? public var name:String? public var defaultPrice:Double? public var seriesId:Int? public var ownerId:Int? public var ticketTypeListOrder:Int? public var isActive:Bool? public var maxTickets:Int? public var ticketColor:String? public var showUsedTickets:Bool? public var canOnlyBeBoughtWithTeamPass:Bool? public var isSpecialTicket:Bool? public var specialTicketId:String? public var onlyForKsi:Bool? public var timestampCreated:Date? public var timestampLastChanged:Date? public var ticketsForSalePerEvent:Bool? public var imageUrl:String? public var holderInfoRequired:Bool? public var eventSeriesOwnerSeatingSectionId:Int? public var canOnlyBeBought:Bool? public var canNotBeBought:Bool? public var blockTransfer:Bool? public var maxTicketsPerTransaction:Int? public var forceSingleTickets:Bool? public var onlyForEvent:Int? public var currency:String? required public init(){} }