/* Options: Date: 2024-12-23 11:33:25 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: LotteryAcquireTicketsRequest.* //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="POST") public static class LotteryAcquireTicketsRequest implements IReturn, IPost { public Long pointsToConvert = null; public Long getPointsToConvert() { return pointsToConvert; } public LotteryAcquireTicketsRequest setPointsToConvert(Long value) { this.pointsToConvert = value; return this; } private static Object responseType = LotteryAcquireTicketsResponse.class; public Object getResponseType() { return responseType; } } public static class LotteryAcquireTicketsResponse { public Long newTicketsAcquired = null; public Long pointsSpent = null; public Long totalPointsLeft = null; public Long totalTicketsInLottery = null; public Long getNewTicketsAcquired() { return newTicketsAcquired; } public LotteryAcquireTicketsResponse setNewTicketsAcquired(Long value) { this.newTicketsAcquired = value; return this; } public Long getPointsSpent() { return pointsSpent; } public LotteryAcquireTicketsResponse setPointsSpent(Long value) { this.pointsSpent = value; return this; } public Long getTotalPointsLeft() { return totalPointsLeft; } public LotteryAcquireTicketsResponse setTotalPointsLeft(Long value) { this.totalPointsLeft = value; return this; } public Long getTotalTicketsInLottery() { return totalTicketsInLottery; } public LotteryAcquireTicketsResponse setTotalTicketsInLottery(Long value) { this.totalTicketsInLottery = value; return this; } } }