/* Options: Date: 2025-05-06 13:51:30 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: EventOwnerTicketTypeConnectionSearchRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/EventOwnerTicketTypeConnections", Verbs="POST") open class EventOwnerTicketTypeConnectionSearchRequest : IReturn { var eventId:Int? = null var sectionId:Int? = null companion object { private val responseType = EventOwnerTicketTypeConnectionSearchResult::class.java } override fun getResponseType(): Any? = EventOwnerTicketTypeConnectionSearchRequest.responseType } open class EventOwnerTicketTypeConnectionSearchResult { var items:ArrayList = ArrayList() var statusCode:Int? = null var message:String? = null } open class EventOwnerTicketTypeConnection { var id:Int? = null var eventSeatingSectionId:Int? = null var ownerTicketTypeId:Int? = null var maxTickets:Int? = null var eventId:Int? = null }