/* Options: Date: 2025-04-11 13:40:10 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: LotteryAvailabePointsRequest.* //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="GET") open class LotteryAvailabePointsRequest : IReturn, IGet { companion object { private val responseType = LotteryAvailabePointsResponse::class.java } override fun getResponseType(): Any? = LotteryAvailabePointsRequest.responseType } open class LotteryAvailabePointsResponse { var availablePoints:Long? = null }