/* Options: Date: 2024-12-23 11:57:16 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LotteryAcquireTicketsRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/lottery/points", Verbs="POST") open class LotteryAcquireTicketsRequest : IReturn, IPost { var pointsToConvert:Long? = null companion object { private val responseType = LotteryAcquireTicketsResponse::class.java } override fun getResponseType(): Any? = LotteryAcquireTicketsRequest.responseType } open class LotteryAcquireTicketsResponse { var newTicketsAcquired:Long? = null var pointsSpent:Long? = null var totalPointsLeft:Long? = null var totalTicketsInLottery:Long? = null }