/* Options: Date: 2025-05-06 13:40:51 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: EventSeriesOwnerTicketTypeCreateRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/EventSeriesOwnerTicketType", "POST") public class EventSeriesOwnerTicketTypeCreateRequest : IReturn, Codable { public typealias Return = EventSeriesOwnerTicketTypeResult public var item:EventSeriesOwnerTicketType? required public init(){} } public class EventSeriesOwnerTicketTypeResult : Codable { public var item: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(){} }