/* Options: Date: 2026-07-03 07:00:32 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EventSeatingMoveTicketToAnotherEventRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/EventSeatingMoveTicketToAnotherEventInSeries", Verbs="POST") open class EventSeatingMoveTicketToAnotherEventRequest : IReturn { var fromEventId:Int? = null var toEventId:Int? = null var moves:ArrayList = ArrayList() var reason:String? = null var quoteOnly:Boolean? = null var expectedPriceDifference:BigDecimal? = null var skipReconciliation:Boolean? = null var idempotencyKey:String? = null var userId:Int? = null var requestUnixUTCTimeStamp:Long? = null var signature:RequestSignature? = null companion object { private val responseType = EventSeatingMoveTicketToAnotherEventResult::class.java } override fun getResponseType(): Any? = EventSeatingMoveTicketToAnotherEventRequest.responseType } open class EventSeatingMoveTicketToAnotherEventResult { var statusCode:Int? = null var message:String? = null var movedSeatIds:ArrayList = ArrayList() var failures:ArrayList = ArrayList() var direction:String? = null var priceDifference:BigDecimal? = null var reconciliationSkipped:Boolean? = null var sourceEventPaidOut:Boolean? = null var outstandingCostHandledByServer:Boolean? = null var reconciliationLogId:Int? = null var refundAmount:BigDecimal? = null var refundPaymentReference:String? = null var seats:ArrayList = ArrayList() } open class RequestSignature { var systemId:String? = null var systemSecret:String? = null var signature:String? = null } open class MoveTicketToAnotherEventPair { var fromSeatId:Int? = null var toSeatId:Int? = null var toSeriesTicketTypeId:Int? = null var toOwnerTicketTypeId:Int? = null } open class MoveTicketToAnotherEventFailure { var fromSeatId:Int? = null var toSeatId:Int? = null var reason:String? = null } open class MoveTicketToAnotherEventSeatQuote { var fromSeatId:Int? = null var toSeatId:Int? = null var ticketTokenId:String? = null var fromPrice:BigDecimal? = null var toPrice:BigDecimal? = null var difference:BigDecimal? = null var toSeatName:String? = null var ok:Boolean? = null var message:String? = null }