/* Options: Date: 2025-05-06 13:51:31 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: TeamPassTypeSingleAddChangeRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/TeamPassTypes/PassType") open class TeamPassTypeSingleAddChangeRequest : IReturn { var passType:TeamPassType? = null var requestUnixUTCTimeStamp:Long? = null var signature:RequestSignature? = null companion object { private val responseType = TeamPassTypeSingleResult::class.java } override fun getResponseType(): Any? = TeamPassTypeSingleAddChangeRequest.responseType } open class TeamPassTypeSingleResult { var passType:TeamPassType? = null var statusCode:Int? = null var message:String? = null } open class RequestSignature { var systemId:String? = null var systemSecret:String? = null var signature:String? = null } open class TeamPassType { var id:Int? = null var name:String? = null var price:BigDecimal? = null var seriesId:Int? = null var ownerId:Int? = null var seriesTicketType:Int? = null var seriesOwnerTicketType:Int? = null var isActive:Boolean? = null var onlyForTeamUse:Boolean? = null var timestampCreated:Date? = null var timestampLastChanged:Date? = null }