/* Options: Date: 2025-05-06 15:12:17 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: VenueOwnerTicketTypeConnectionUpdateRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/VenueOwnerTicketTypeConnection", Verbs="PUT") open class VenueOwnerTicketTypeConnectionUpdateRequest : IReturn { var item:VenueOwnerTicketTypeConnection? = null companion object { private val responseType = VenueOwnerTicketTypeConnectionResult::class.java } override fun getResponseType(): Any? = VenueOwnerTicketTypeConnectionUpdateRequest.responseType } open class VenueOwnerTicketTypeConnectionResult { var item:VenueOwnerTicketTypeConnection? = null var statusCode:Int? = null var message:String? = null } open class VenueOwnerTicketTypeConnection { var id:Int? = null var venueSeatingSectionId:Int? = null var ownerTicketId:Int? = null var maxTickets:Int? = null var venueId:Int? = null }