| All Verbs | /qry/config/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 GetGameConfig() =
member val LocationId:String = 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 /qry/config/game HTTP/1.1
Host: s4w2.api.bettor.cc
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<GetGameConfig xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Six4Win.WebApi.ServiceModel">
<LocationId>String</LocationId>
</GetGameConfig>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<GameConfiguration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Six4Win.ReadModel">
<HappyHourConfig xmlns:d2p1="http://schemas.datacontract.org/2004/07/Six4Win">
<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>
</HappyHourConfig>
<Id>String</Id>
<QueueSize>0</QueueSize>
<RoundConfiguration xmlns:d2p1="http://schemas.datacontract.org/2004/07/Six4Win">
<d2p1:Coefficients xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:float>0</d3p1: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>
</RoundConfiguration>
</GameConfiguration>