/* Options: Date: 2025-11-08 11:00:31 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: GetLastRoundsStats.* //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/stats/last10") public static class GetLastRoundsStats implements IReturn { private static Object responseType = LastRoundsStats.class; public Object getResponseType() { return responseType; } } public static class LastRoundsStats { public String id = null; public ArrayList topSix = null; public ArrayList bottomSix = null; public ArrayList topFirstColors = null; public ArrayList topColors = null; public Comparison firstNrEvenVsOdd = null; public Comparison firstNrLessVsGreater24_5 = null; public Comparison sumOfFirstFiveLessVsGreaterThan122_5 = null; public Comparison totalEvenVsOdd = null; public String getId() { return id; } public LastRoundsStats setId(String value) { this.id = value; return this; } public ArrayList getTopSix() { return topSix; } public LastRoundsStats setTopSix(ArrayList value) { this.topSix = value; return this; } public ArrayList getBottomSix() { return bottomSix; } public LastRoundsStats setBottomSix(ArrayList value) { this.bottomSix = value; return this; } public ArrayList getTopFirstColors() { return topFirstColors; } public LastRoundsStats setTopFirstColors(ArrayList value) { this.topFirstColors = value; return this; } public ArrayList getTopColors() { return topColors; } public LastRoundsStats setTopColors(ArrayList value) { this.topColors = value; return this; } public Comparison getFirstNrEvenVsOdd() { return firstNrEvenVsOdd; } public LastRoundsStats setFirstNrEvenVsOdd(Comparison value) { this.firstNrEvenVsOdd = value; return this; } public Comparison getFirstNrLessVsGreater245() { return firstNrLessVsGreater24_5; } public LastRoundsStats setFirstNrLessVsGreater245(Comparison value) { this.firstNrLessVsGreater24_5 = value; return this; } public Comparison getSumOfFirstFiveLessVsGreaterThan1225() { return sumOfFirstFiveLessVsGreaterThan122_5; } public LastRoundsStats setSumOfFirstFiveLessVsGreaterThan1225(Comparison value) { this.sumOfFirstFiveLessVsGreaterThan122_5 = value; return this; } public Comparison getTotalEvenVsOdd() { return totalEvenVsOdd; } public LastRoundsStats setTotalEvenVsOdd(Comparison value) { this.totalEvenVsOdd = value; return this; } } public static class Rating { public Integer val = null; public Integer count = null; public Integer getVal() { return val; } public Rating setVal(Integer value) { this.val = value; return this; } public Integer getCount() { return count; } public Rating setCount(Integer value) { this.count = value; return this; } } public static class Comparison { public Integer v1 = null; public Integer v2 = null; public Float p1 = null; public Float p2 = null; public Integer getV1() { return v1; } public Comparison setV1(Integer value) { this.v1 = value; return this; } public Integer getV2() { return v2; } public Comparison setV2(Integer value) { this.v2 = value; return this; } public Float getP1() { return p1; } public Comparison setP1(Float value) { this.p1 = value; return this; } public Float getP2() { return p2; } public Comparison setP2(Float value) { this.p2 = value; return this; } } }