/* Options: Date: 2025-05-06 13:35:43 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EventOwnerTicketTypeToCardConnectionUpdateRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/EventOwnerTicketTypeToCardConnection", Verbs="PUT") open class EventOwnerTicketTypeToCardConnectionUpdateRequest : IReturn { var item:EventOwnerTicketTypeToCardConnection? = null companion object { private val responseType = EventOwnerTicketTypeToCardConnectionResult::class.java } override fun getResponseType(): Any? = EventOwnerTicketTypeToCardConnectionUpdateRequest.responseType } open class EventOwnerTicketTypeToCardConnectionResult { var item:EventOwnerTicketTypeToCardConnection? = null var statusCode:Int? = null var message:String? = null } open class EventOwnerTicketTypeToCardConnection { var id:Int? = null var ownerCardTypeId:Int? = null var ownerTicketTypeId:Int? = null var active:Boolean? = null }