Six4Win.WebApi

<back to all web services

GetSuperWinAccumulations

The following routes are available for this service:
All Verbs/qry/super-win/accumulations
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    public static class GetSuperWinAccumulations
    {
        
    }

    public static class SuperWinStateDoc
    {
        public String id = null;
        public SuperWinState state = null;
        
        public String getId() { return id; }
        public SuperWinStateDoc setId(String value) { this.id = value; return this; }
        public SuperWinState getState() { return state; }
        public SuperWinStateDoc setState(SuperWinState value) { this.state = value; return this; }
    }

    public static class SuperWinState
    {
        public String currentDate = null;
        public BigDecimal availableAmount = null;
        public RecordDictionary<Integer, SuperWinPool> pools = null;
        
        public String getCurrentDate() { return currentDate; }
        public SuperWinState setCurrentDate(String value) { this.currentDate = value; return this; }
        public BigDecimal getAvailableAmount() { return availableAmount; }
        public SuperWinState setAvailableAmount(BigDecimal value) { this.availableAmount = value; return this; }
        public RecordDictionary<Integer, SuperWinPool> getPools() { return pools; }
        public SuperWinState setPools(RecordDictionary<Integer, SuperWinPool> value) { this.pools = value; return this; }
    }

    public static class RecordDictionary<TKey, TVal> extends HashMap<TKey,TVal>
    {
        
    }

    public static class SuperWinPool
    {
        public Integer id = null;
        public SuperWinPoolState state = null;
        public BigDecimal amount = null;
        public RecordList<SuperWinPrize> schedule = null;
        
        public Integer getId() { return id; }
        public SuperWinPool setId(Integer value) { this.id = value; return this; }
        public SuperWinPoolState getState() { return state; }
        public SuperWinPool setState(SuperWinPoolState value) { this.state = value; return this; }
        public BigDecimal getAmount() { return amount; }
        public SuperWinPool setAmount(BigDecimal value) { this.amount = value; return this; }
        public RecordList<SuperWinPrize> getSchedule() { return schedule; }
        public SuperWinPool setSchedule(RecordList<SuperWinPrize> value) { this.schedule = value; return this; }
    }

    public static enum SuperWinPoolState
    {
        @SerializedName("0") Idle(0),
        @SerializedName("1") Accumulating(1),
        @SerializedName("2") Awarding(2);

        private final int value;
        SuperWinPoolState(final int intValue) { value = intValue; }
        public int getValue() { return value; }
    }

    public static class RecordList<T> extends ArrayList<T>
    {
        
    }

    public static class SuperWinPrize
    {
        public Integer id = null;
        public BigDecimal amount = null;
        public Date scheduledAt = null;
        public SuperWinWinner winner = null;
        
        public Integer getId() { return id; }
        public SuperWinPrize setId(Integer value) { this.id = value; return this; }
        public BigDecimal getAmount() { return amount; }
        public SuperWinPrize setAmount(BigDecimal value) { this.amount = value; return this; }
        public Date getScheduledAt() { return scheduledAt; }
        public SuperWinPrize setScheduledAt(Date value) { this.scheduledAt = value; return this; }
        public SuperWinWinner getWinner() { return winner; }
        public SuperWinPrize setWinner(SuperWinWinner value) { this.winner = value; return this; }
    }

    public static class SuperWinWinner
    {
        public Boolean isDrawn = null;
        public Date drawnAtUtc = null;
        public String roundId = null;
        public String betId = null;
        public String slipId = null;
        public Origin origin = null;
        public Ref bettor = null;
        public String code = null;
        public BigDecimal amount = null;
        public String locationAddressOrBettorInfo = null;
        
        public Boolean getIsDrawn() { return isDrawn; }
        public SuperWinWinner setIsDrawn(Boolean value) { this.isDrawn = value; return this; }
        public Date getDrawnAtUtc() { return drawnAtUtc; }
        public SuperWinWinner setDrawnAtUtc(Date value) { this.drawnAtUtc = value; return this; }
        public String getRoundId() { return roundId; }
        public SuperWinWinner setRoundId(String value) { this.roundId = value; return this; }
        public String getBetId() { return betId; }
        public SuperWinWinner setBetId(String value) { this.betId = value; return this; }
        public String getSlipId() { return slipId; }
        public SuperWinWinner setSlipId(String value) { this.slipId = value; return this; }
        public Origin getOrigin() { return origin; }
        public SuperWinWinner setOrigin(Origin value) { this.origin = value; return this; }
        public Ref getBettor() { return bettor; }
        public SuperWinWinner setBettor(Ref value) { this.bettor = value; return this; }
        public String getCode() { return code; }
        public SuperWinWinner setCode(String value) { this.code = value; return this; }
        public BigDecimal getAmount() { return amount; }
        public SuperWinWinner setAmount(BigDecimal value) { this.amount = value; return this; }
        public String getLocationAddressOrBettorInfo() { return locationAddressOrBettorInfo; }
        public SuperWinWinner setLocationAddressOrBettorInfo(String value) { this.locationAddressOrBettorInfo = value; return this; }
    }

    public static class Origin
    {
        public BettingApp application = null;
        public String ip = null;
        public RefEx organization = null;
        public Ref region = null;
        public Ref locationGroup = null;
        public RefEx location = null;
        public RefEx device = null;
        public Ref clerk = null;
        
        public BettingApp getApplication() { return application; }
        public Origin setApplication(BettingApp value) { this.application = value; return this; }
        public String getIp() { return ip; }
        public Origin setIp(String value) { this.ip = value; return this; }
        public RefEx getOrganization() { return organization; }
        public Origin setOrganization(RefEx value) { this.organization = value; return this; }
        public Ref getRegion() { return region; }
        public Origin setRegion(Ref value) { this.region = value; return this; }
        public Ref getLocationGroup() { return locationGroup; }
        public Origin setLocationGroup(Ref value) { this.locationGroup = value; return this; }
        public RefEx getLocation() { return location; }
        public Origin setLocation(RefEx value) { this.location = value; return this; }
        public RefEx getDevice() { return device; }
        public Origin setDevice(RefEx value) { this.device = value; return this; }
        public Ref getClerk() { return clerk; }
        public Origin setClerk(Ref value) { this.clerk = value; return this; }
    }

    public static class BettingApp
    {
        public String name = null;
        public String version = null;
        
        public String getName() { return name; }
        public BettingApp setName(String value) { this.name = value; return this; }
        public String getVersion() { return version; }
        public BettingApp setVersion(String value) { this.version = value; return this; }
    }

    public static class RefEx extends Ref
    {
        public RecordDictionary<String, String> data = null;
        
        public RecordDictionary<String, String> getData() { return data; }
        public RefEx setData(RecordDictionary<String, String> value) { this.data = value; return this; }
    }

    public static class Ref
    {
        public String id = null;
        public String val = null;
        
        public String getId() { return id; }
        public Ref setId(String value) { this.id = value; return this; }
        public String getVal() { return val; }
        public Ref setVal(String value) { this.val = value; return this; }
    }

}

Java GetSuperWinAccumulations DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /qry/super-win/accumulations HTTP/1.1 
Host: s4w2.api.bettor.cc 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	id: String,
	state: 
	{
		currentDate: String,
		availableAmount: 0,
		pools: 
		{
			0: 
			{
				id: 0,
				state: 0,
				amount: 0,
				schedule: 
				[
					{
						id: 0,
						amount: 0,
						scheduledAt: 0001-01-01,
						winner: 
						{
							isDrawn: False,
							drawnAtUtc: 0001-01-01,
							roundId: String,
							betId: String,
							slipId: String,
							origin: 
							{
								application: 
								{
									name: String,
									version: String
								},
								ip: String,
								organization: 
								{
									data: 
									{
										String: String
									},
									id: String,
									val: String
								},
								region: 
								{
									id: String,
									val: String
								},
								locationGroup: 
								{
									id: String,
									val: String
								},
								location: 
								{
									data: 
									{
										String: String
									},
									id: String,
									val: String
								},
								device: 
								{
									data: 
									{
										String: String
									},
									id: String,
									val: String
								},
								clerk: 
								{
									id: String,
									val: String
								}
							},
							bettor: 
							{
								id: String,
								val: String
							},
							code: String,
							amount: 0,
							locationAddressOrBettorInfo: String
						}
					}
				]
			}
		}
	}
}