| POST | /cmd/configure/game |
|---|
namespace Six4Win.WebApi.ServiceModel
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type CountdownConfiguration() =
member val LockdownStepFromEnd:Int32 = new Int32() with get,set
member val AssertLockdownStepFromEnd:Int32 = new Int32() with get,set
[<AllowNullLiteral>]
type DrawConfiguration() =
member val IntroIntervalInMs:Int32 = new Int32() with get,set
member val AnimationIntervalInMs:Int32 = new Int32() with get,set
member val OutroIntervalInMs:Int32 = new Int32() with get,set
type RTPStrategies =
| RNG = 0
| Accumulator = 1
[<AllowNullLiteral>]
type HappyHourConfiguration() =
member val IsHappyHour:Boolean = new Boolean() with get,set
member val OddsModifier:Decimal = new Decimal() with get,set
member val RoundPoolBonusPct:Decimal = new Decimal() with get,set
[<AllowNullLiteral>]
type RoundConfiguration() =
member val Coefficients:RecordList<Single> = null with get,set
member val IsDoubleTripleActive:Boolean = new Boolean() with get,set
member val IsJackpot5Active:Boolean = new Boolean() with get,set
member val CountdownDurationInSeconds:Int32 = new Int32() with get,set
member val CountdownConfiguration:CountdownConfiguration = null with get,set
member val DrawConfiguration:DrawConfiguration = null with get,set
member val ResultsDurationInSeconds:Int32 = new Int32() with get,set
member val RTPStrategy:RTPStrategies = new RTPStrategies() with get,set
member val HappyHourConfiguration:HappyHourConfiguration = null with get,set
[<AllowNullLiteral>]
type TimePoint() =
member val Hour:Int32 = new Int32() with get,set
member val Minute:Int32 = new Int32() with get,set
[<AllowNullLiteral>]
type TimeInterval() =
member val Start:TimePoint = null with get,set
member val End:TimePoint = null with get,set
[<AllowNullLiteral>]
type HappyHourItem() =
member val Id:Int64 = new Int64() with get,set
member val Interval:TimeInterval = null with get,set
member val OddsModifier:Decimal = new Decimal() with get,set
member val RoundPoolBonusPct:Decimal = new Decimal() with get,set
[<AllowNullLiteral>]
type HappyHourConfig() =
member val IsActive:Boolean = new Boolean() with get,set
member val Items:ResizeArray<HappyHourItem> = null with get,set
[<AllowNullLiteral>]
type GameConfiguration() =
member val Id:String = null with get,set
member val QueueSize:Int32 = new Int32() with get,set
member val RoundConfiguration:RoundConfiguration = null with get,set
member val HappyHourConfig:HappyHourConfig = null with get,set
[<AllowNullLiteral>]
type ConfigureGame() =
member val Id:String = null with get,set
member val Configuration:GameConfiguration = null with get,set
[<AllowNullLiteral>]
type RecordList<T>() =
inherit ResizeArray<T>()
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>