/* Options: Date: 2025-11-09 11:07:58 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetConfiguredRTP.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/qry/rtp/configured") public static class GetConfiguredRTP implements IReturn { private static Object responseType = RTPResponse.class; public Object getResponseType() { return responseType; } } public static class RTPResponse { public BigDecimal totalRTP = null; public BigDecimal mainGame = null; public BigDecimal superWin = null; public BigDecimal globalCodePot = null; public BigDecimal localCodePot = null; public BigDecimal getTotalRTP() { return totalRTP; } public RTPResponse setTotalRTP(BigDecimal value) { this.totalRTP = value; return this; } public BigDecimal getMainGame() { return mainGame; } public RTPResponse setMainGame(BigDecimal value) { this.mainGame = value; return this; } public BigDecimal getSuperWin() { return superWin; } public RTPResponse setSuperWin(BigDecimal value) { this.superWin = value; return this; } public BigDecimal getGlobalCodePot() { return globalCodePot; } public RTPResponse setGlobalCodePot(BigDecimal value) { this.globalCodePot = value; return this; } public BigDecimal getLocalCodePot() { return localCodePot; } public RTPResponse setLocalCodePot(BigDecimal value) { this.localCodePot = value; return this; } } }