/* Options: Date: 2026-05-19 04:44:00 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: TransferTicketToEventRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/TransferTicketToEvent", Verbs="POST") open class TransferTicketToEventRequest : IReturn { var ticketTokenId:String? = null var toEventId:Int? = null var userId:Int? = null var reason:String? = null var idempotencyKey:String? = null var expectedPriceDifference:BigDecimal? = null var toOwnerTicketTypeId:Int? = null var toSeriesTicketTypeId:Int? = null var toSeatId:Int? = null companion object { private val responseType = TransferTicketToEventResult::class.java } override fun getResponseType(): Any? = TransferTicketToEventRequest.responseType } open class TransferTicketToEventResult { var ok:Boolean? = null var statusCode:Int? = null var code:String? = null var message:String? = null var transferLogId:Int? = null var newTicketTokenId:String? = null var direction:String? = null var priceDifference:BigDecimal? = null var originalTicketPrice:BigDecimal? = null var targetTicketPrice:BigDecimal? = null var sourceEventPaidOut:Boolean? = null var outstandingCostHandledByServer:Boolean? = null var refund:TransferRefundInstruction? = null var topup:TransferTopupInstruction? = null var quote:TransferTicketQuoteResult? = null } open class TransferRefundInstruction { var amountIsk:BigDecimal? = null var paymentReference:String? = null var instruction:String? = null } open class TransferTopupInstruction { var amountIsk:BigDecimal? = null var paymentLinkUrl:String? = null var sessionToken:String? = null var expiresAt:Date? = null } open class TransferTicketQuoteResult { var ok:Boolean? = null var statusCode:Int? = null var code:String? = null var message:String? = null var from:TransferQuoteEventSide? = null var to:TransferQuoteEventSide? = null var priceDifference:BigDecimal? = null var direction:String? = null var refundableViaBorgun:Boolean? = null var afterPayout:Boolean? = null }