/* Options: Date: 2026-05-19 04:40:17 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: TransferTargetTicketTypesRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/transferTicket/targetTicketTypes", "POST") public class TransferTargetTicketTypesRequest : IReturn, Codable { public typealias Return = TransferTargetTicketTypesResult public var ticketTokenId:String? public var toEventId:Int? public var sectionId:Int? required public init(){} } public class TransferTargetTicketTypesResult : Codable { public var ok:Bool? public var statusCode:Int? public var code:String? public var message:String? public var sourceTicketPrice:Double? public var sourceTicketTypeName:String? public var options:[TransferTargetTicketTypeOption] = [] required public init(){} } public class TransferTargetTicketTypeOption : Codable { public var ownerTicketTypeId:Int? public var seriesTicketTypeId:Int? public var name:String? public var price:Double? public var direction:String? public var priceDifference:Double? public var nameMatchesSource:Bool? public var blockTransfer:Bool? public var hidden:Bool? public var maxTickets:Int? public var ticketsSold:Int? public var ticketsLeft:Int? required public init(){} }