/* Options: Date: 2026-05-19 05:39:05 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 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() } 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 }