/* Options: Date: 2026-08-17 09:23:47 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: ReseatWithinEventRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/EventSeating/ReseatWithinEvent", "POST") public class ReseatWithinEventRequest : IReturn, Codable { public typealias Return = ReseatWithinEventResult public var eventId:Int? public var moves:[ReseatMovePair] = [] public var expectedPriceDifference:Double? public var skipReconciliation:Bool? public var reason:String? public var idempotencyKey:String? public var userId:Int? required public init(){} } public class ReseatWithinEventResult : Codable { public var ok:Bool? public var statusCode:Int? public var message:String? public var direction:String? public var priceDifference:Double? public var reconciliationSkipped:Bool? public var reconciliationLogId:Int? public var refundAmount:Double? public var refundPaymentReference:String? public var movedSeatIds:[Int] = [] public var failures:[MoveConfirmedSeatFailure] = [] required public init(){} } public class ReseatMovePair : Codable { public var fromSeatId:Int? public var toSeatId:Int? public var toOwnerTicketTypeId:Int? required public init(){} } public class MoveConfirmedSeatFailure : Codable { public var fromSeatId:Int? public var toSeatId:Int? public var reason:String? required public init(){} }