/* Options: Date: 2026-08-17 08:24:04 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: ReseatQuoteRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/EventSeating/ReseatQuote", "POST") public class ReseatQuoteRequest : IReturn, Codable { public typealias Return = ReseatQuoteResult public var eventId:Int? public var moves:[ReseatMovePair] = [] required public init(){} } public class ReseatQuoteResult : Codable { public var ok:Bool? public var statusCode:Int? public var message:String? public var totalFromPrice:Double? public var totalToPrice:Double? public var priceDifference:Double? public var direction:String? public var refundableViaBorgun:Bool? public var paymentReference:String? public var seats:[ReseatSeatQuote] = [] required public init(){} } public class ReseatMovePair : Codable { public var fromSeatId:Int? public var toSeatId:Int? public var toOwnerTicketTypeId:Int? required public init(){} } public class ReseatSeatQuote : Codable { public var fromSeatId:Int? public var toSeatId:Int? public var ticketTokenId:String? public var fromPrice:Double? public var toPrice:Double? public var difference:Double? public var toSectionName:String? public var toSeatName:String? public var ok:Bool? public var message:String? required public init(){} }