/* Options: Date: 2026-05-19 04:43:39 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: EventSeatingMoveTicketToAnotherEventRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/EventSeatingMoveTicketToAnotherEventInSeries", "POST") public class EventSeatingMoveTicketToAnotherEventRequest : IReturn, Codable { public typealias Return = EventSeatingMoveTicketToAnotherEventResult public var fromEventId:Int? public var toEventId:Int? public var moves:[MoveTicketToAnotherEventPair] = [] public var reason:String? public var requestUnixUTCTimeStamp:Int? public var signature:RequestSignature? required public init(){} } public class EventSeatingMoveTicketToAnotherEventResult : Codable { public var statusCode:Int? public var message:String? public var movedSeatIds:[Int] = [] public var failures:[MoveTicketToAnotherEventFailure] = [] required public init(){} } public class RequestSignature : Codable { public var systemId:String? public var systemSecret:String? public var signature:String? required public init(){} } public class MoveTicketToAnotherEventPair : Codable { public var fromSeatId:Int? public var toSeatId:Int? public var toSeriesTicketTypeId:Int? public var toOwnerTicketTypeId:Int? required public init(){} } public class MoveTicketToAnotherEventFailure : Codable { public var fromSeatId:Int? public var toSeatId:Int? public var reason:String? required public init(){} }