| 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 .jsv suffix or ?format=jsv
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: text/jsv
Content-Type: text/jsv
Content-Length: length
{
locationId: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
id: String,
queueSize: 0,
roundConfiguration:
{
coefficients:
[
0
],
isDoubleTripleActive: False,
isJackpot5Active: False,
countdownDurationInSeconds: 0,
countdownConfiguration:
{
lockdownStepFromEnd: 0,
assertLockdownStepFromEnd: 0
},
drawConfiguration:
{
introIntervalInMs: 0,
animationIntervalInMs: 0,
outroIntervalInMs: 0
},
resultsDurationInSeconds: 0,
rtpStrategy: 0,
happyHourConfiguration:
{
isHappyHour: False,
oddsModifier: 0,
roundPoolBonusPct: 0
}
},
happyHourConfig:
{
isActive: False,
items:
[
{
id: 0,
interval:
{
start:
{
hour: 0,
minute: 0
},
end:
{
hour: 0,
minute: 0
}
},
oddsModifier: 0,
roundPoolBonusPct: 0
}
]
}
}