/* Options: Date: 2026-08-17 09:23:50 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: SetSeatingSaleVisibilityRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/SeatingTicketTypeConnection/SaleVisibility", Verbs="PUT") open class SetSeatingSaleVisibilityRequest : IReturn { var connectionId:Int? = null var ticketTypeId:Int? = null var isSeriesTicketType:Boolean? = null var eventId:Int? = null var hiddenFromSale:Boolean? = null companion object { private val responseType = SetSeatingSaleVisibilityResult::class.java } override fun getResponseType(): Any? = SetSeatingSaleVisibilityRequest.responseType } open class SetSeatingSaleVisibilityResult { var updatedCount:Int? = null var statusCode:Int? = null var message:String? = null }