/* Options: Date: 2026-08-17 08:24:04 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: ReseatWithinEventRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/EventSeating/ReseatWithinEvent", Verbs="POST") open class ReseatWithinEventRequest : IReturn { var eventId:Int? = null var moves:ArrayList = ArrayList() var expectedPriceDifference:BigDecimal? = null var skipReconciliation:Boolean? = null var reason:String? = null var idempotencyKey:String? = null var userId:Int? = null companion object { private val responseType = ReseatWithinEventResult::class.java } override fun getResponseType(): Any? = ReseatWithinEventRequest.responseType } open class ReseatWithinEventResult { var ok:Boolean? = null var statusCode:Int? = null var message:String? = null var direction:String? = null var priceDifference:BigDecimal? = null var reconciliationSkipped:Boolean? = null var reconciliationLogId:Int? = null var refundAmount:BigDecimal? = null var refundPaymentReference:String? = null var movedSeatIds:ArrayList = ArrayList() var failures:ArrayList = ArrayList() } open class ReseatMovePair { var fromSeatId:Int? = null var toSeatId:Int? = null var toOwnerTicketTypeId:Int? = null } open class MoveConfirmedSeatFailure { var fromSeatId:Int? = null var toSeatId:Int? = null var reason:String? = null }