/* Options: Date: 2024-12-23 11:48:28 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: LotteryAvailabePointsRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class ConsumerApi { @Route(Path="/lottery/points", Verbs="GET") public static class LotteryAvailabePointsRequest implements IReturn, IGet { private static Object responseType = LotteryAvailabePointsResponse.class; public Object getResponseType() { return responseType; } } public static class LotteryAvailabePointsResponse { public Long availablePoints = null; public Long getAvailablePoints() { return availablePoints; } public LotteryAvailabePointsResponse setAvailablePoints(Long value) { this.availablePoints = value; return this; } } }