| POST | /cmd/configure/game |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class ConfigureGame
{
public String id = null;
public GameConfiguration configuration = null;
public String getId() { return id; }
public ConfigureGame setId(String value) { this.id = value; return this; }
public GameConfiguration getConfiguration() { return configuration; }
public ConfigureGame setConfiguration(GameConfiguration value) { this.configuration = value; return this; }
}
public static class GameConfiguration
{
public String id = null;
public Integer queueSize = null;
public RoundConfiguration roundConfiguration = null;
public HappyHourConfig happyHourConfig = null;
public String getId() { return id; }
public GameConfiguration setId(String value) { this.id = value; return this; }
public Integer getQueueSize() { return queueSize; }
public GameConfiguration setQueueSize(Integer value) { this.queueSize = value; return this; }
public RoundConfiguration getRoundConfiguration() { return roundConfiguration; }
public GameConfiguration setRoundConfiguration(RoundConfiguration value) { this.roundConfiguration = value; return this; }
public HappyHourConfig getHappyHourConfig() { return happyHourConfig; }
public GameConfiguration setHappyHourConfig(HappyHourConfig value) { this.happyHourConfig = value; return this; }
}
public static class RoundConfiguration
{
public RecordList<Float> coefficients = null;
public Boolean isDoubleTripleActive = null;
public Boolean isJackpot5Active = null;
public Integer countdownDurationInSeconds = null;
public CountdownConfiguration countdownConfiguration = null;
public DrawConfiguration drawConfiguration = null;
public Integer resultsDurationInSeconds = null;
public RTPStrategies rtpStrategy = null;
public HappyHourConfiguration happyHourConfiguration = null;
public RecordList<Float> getCoefficients() { return coefficients; }
public RoundConfiguration setCoefficients(RecordList<Float> value) { this.coefficients = value; return this; }
public Boolean getIsDoubleTripleActive() { return isDoubleTripleActive; }
public RoundConfiguration setIsDoubleTripleActive(Boolean value) { this.isDoubleTripleActive = value; return this; }
public Boolean getIsJackpot5Active() { return isJackpot5Active; }
public RoundConfiguration setIsJackpot5Active(Boolean value) { this.isJackpot5Active = value; return this; }
public Integer getCountdownDurationInSeconds() { return countdownDurationInSeconds; }
public RoundConfiguration setCountdownDurationInSeconds(Integer value) { this.countdownDurationInSeconds = value; return this; }
public CountdownConfiguration getCountdownConfiguration() { return countdownConfiguration; }
public RoundConfiguration setCountdownConfiguration(CountdownConfiguration value) { this.countdownConfiguration = value; return this; }
public DrawConfiguration getDrawConfiguration() { return drawConfiguration; }
public RoundConfiguration setDrawConfiguration(DrawConfiguration value) { this.drawConfiguration = value; return this; }
public Integer getResultsDurationInSeconds() { return resultsDurationInSeconds; }
public RoundConfiguration setResultsDurationInSeconds(Integer value) { this.resultsDurationInSeconds = value; return this; }
public RTPStrategies getRtpStrategy() { return rtpStrategy; }
public RoundConfiguration setRtpStrategy(RTPStrategies value) { this.rtpStrategy = value; return this; }
public HappyHourConfiguration getHappyHourConfiguration() { return happyHourConfiguration; }
public RoundConfiguration setHappyHourConfiguration(HappyHourConfiguration value) { this.happyHourConfiguration = value; return this; }
}
public static class RecordList<T> extends ArrayList<T>
{
}
public static class CountdownConfiguration
{
public Integer lockdownStepFromEnd = null;
public Integer assertLockdownStepFromEnd = null;
public Integer getLockdownStepFromEnd() { return lockdownStepFromEnd; }
public CountdownConfiguration setLockdownStepFromEnd(Integer value) { this.lockdownStepFromEnd = value; return this; }
public Integer getAssertLockdownStepFromEnd() { return assertLockdownStepFromEnd; }
public CountdownConfiguration setAssertLockdownStepFromEnd(Integer value) { this.assertLockdownStepFromEnd = value; return this; }
}
public static class DrawConfiguration
{
public Integer introIntervalInMs = null;
public Integer animationIntervalInMs = null;
public Integer outroIntervalInMs = null;
public Integer getIntroIntervalInMs() { return introIntervalInMs; }
public DrawConfiguration setIntroIntervalInMs(Integer value) { this.introIntervalInMs = value; return this; }
public Integer getAnimationIntervalInMs() { return animationIntervalInMs; }
public DrawConfiguration setAnimationIntervalInMs(Integer value) { this.animationIntervalInMs = value; return this; }
public Integer getOutroIntervalInMs() { return outroIntervalInMs; }
public DrawConfiguration setOutroIntervalInMs(Integer value) { this.outroIntervalInMs = value; return this; }
}
public static enum RTPStrategies
{
@SerializedName("0") Rng(0),
@SerializedName("1") Accumulator(1);
private final int value;
RTPStrategies(final int intValue) { value = intValue; }
public int getValue() { return value; }
}
public static class HappyHourConfiguration
{
public Boolean isHappyHour = null;
public BigDecimal oddsModifier = null;
public BigDecimal roundPoolBonusPct = null;
public Boolean getIsHappyHour() { return isHappyHour; }
public HappyHourConfiguration setIsHappyHour(Boolean value) { this.isHappyHour = value; return this; }
public BigDecimal getOddsModifier() { return oddsModifier; }
public HappyHourConfiguration setOddsModifier(BigDecimal value) { this.oddsModifier = value; return this; }
public BigDecimal getRoundPoolBonusPct() { return roundPoolBonusPct; }
public HappyHourConfiguration setRoundPoolBonusPct(BigDecimal value) { this.roundPoolBonusPct = value; return this; }
}
public static class HappyHourConfig
{
public Boolean isActive = null;
public ArrayList<HappyHourItem> items = null;
public Boolean getIsActive() { return isActive; }
public HappyHourConfig setIsActive(Boolean value) { this.isActive = value; return this; }
public ArrayList<HappyHourItem> getItems() { return items; }
public HappyHourConfig setItems(ArrayList<HappyHourItem> value) { this.items = value; return this; }
}
public static class HappyHourItem
{
public Long id = null;
public TimeInterval interval = null;
public BigDecimal oddsModifier = null;
public BigDecimal roundPoolBonusPct = null;
public Long getId() { return id; }
public HappyHourItem setId(Long value) { this.id = value; return this; }
public TimeInterval getInterval() { return interval; }
public HappyHourItem setInterval(TimeInterval value) { this.interval = value; return this; }
public BigDecimal getOddsModifier() { return oddsModifier; }
public HappyHourItem setOddsModifier(BigDecimal value) { this.oddsModifier = value; return this; }
public BigDecimal getRoundPoolBonusPct() { return roundPoolBonusPct; }
public HappyHourItem setRoundPoolBonusPct(BigDecimal value) { this.roundPoolBonusPct = value; return this; }
}
public static class TimeInterval
{
public TimePoint start = null;
public TimePoint end = null;
public TimePoint getStart() { return start; }
public TimeInterval setStart(TimePoint value) { this.start = value; return this; }
public TimePoint getEnd() { return end; }
public TimeInterval setEnd(TimePoint value) { this.end = value; return this; }
}
public static class TimePoint
{
public Integer hour = null;
public Integer minute = null;
public Integer getHour() { return hour; }
public TimePoint setHour(Integer value) { this.hour = value; return this; }
public Integer getMinute() { return minute; }
public TimePoint setMinute(Integer value) { this.minute = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /cmd/configure/game HTTP/1.1
Host: s4w2.api.bettor.cc
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<ConfigureGame xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Six4Win.WebApi.ServiceModel">
<Configuration xmlns:d2p1="http://schemas.datacontract.org/2004/07/Six4Win">
<d2p1:HappyHourConfig>
<d2p1:IsActive>false</d2p1:IsActive>
<d2p1:Items>
<d2p1:HappyHourConfig.HappyHourItem>
<d2p1:Id>0</d2p1:Id>
<d2p1:Interval>
<d2p1:End>
<d2p1:Hour>0</d2p1:Hour>
<d2p1:Minute>0</d2p1:Minute>
</d2p1:End>
<d2p1:Start>
<d2p1:Hour>0</d2p1:Hour>
<d2p1:Minute>0</d2p1:Minute>
</d2p1:Start>
</d2p1:Interval>
<d2p1:OddsModifier>0</d2p1:OddsModifier>
<d2p1:RoundPoolBonusPct>0</d2p1:RoundPoolBonusPct>
</d2p1:HappyHourConfig.HappyHourItem>
</d2p1:Items>
</d2p1:HappyHourConfig>
<d2p1:QueueSize>0</d2p1:QueueSize>
<d2p1:RoundConfiguration>
<d2p1:Coefficients xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:float>0</d4p1:float>
</d2p1:Coefficients>
<d2p1:CountdownConfiguration>
<d2p1:AssertLockdownStepFromEnd>0</d2p1:AssertLockdownStepFromEnd>
<d2p1:LockdownStepFromEnd>0</d2p1:LockdownStepFromEnd>
</d2p1:CountdownConfiguration>
<d2p1:CountdownDurationInSeconds>0</d2p1:CountdownDurationInSeconds>
<d2p1:DrawConfiguration>
<d2p1:AnimationIntervalInMs>0</d2p1:AnimationIntervalInMs>
<d2p1:IntroIntervalInMs>0</d2p1:IntroIntervalInMs>
<d2p1:OutroIntervalInMs>0</d2p1:OutroIntervalInMs>
</d2p1:DrawConfiguration>
<d2p1:HappyHourConfiguration>
<d2p1:IsHappyHour>false</d2p1:IsHappyHour>
<d2p1:OddsModifier>0</d2p1:OddsModifier>
<d2p1:RoundPoolBonusPct>0</d2p1:RoundPoolBonusPct>
</d2p1:HappyHourConfiguration>
<d2p1:IsDoubleTripleActive>false</d2p1:IsDoubleTripleActive>
<d2p1:IsJackpot5Active>false</d2p1:IsJackpot5Active>
<d2p1:RTPStrategy>RNG</d2p1:RTPStrategy>
<d2p1:ResultsDurationInSeconds>0</d2p1:ResultsDurationInSeconds>
</d2p1:RoundConfiguration>
</Configuration>
<Id>String</Id>
</ConfigureGame>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<ResponseStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
<ErrorCode>String</ErrorCode>
<Message>String</Message>
<StackTrace>String</StackTrace>
<Errors>
<ResponseError>
<ErrorCode>String</ErrorCode>
<FieldName>String</FieldName>
<Message>String</Message>
<Meta xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:KeyValueOfstringstring>
<d4p1:Key>String</d4p1:Key>
<d4p1:Value>String</d4p1:Value>
</d4p1:KeyValueOfstringstring>
</Meta>
</ResponseError>
</Errors>
<Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Meta>
</ResponseStatus>