| All Verbs | /feed/odds |
|---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
open class GetOdds
{
}
open class AvailableRounds
{
open var id:String? = null
open var rounds:ArrayList<Round>? = null
}
open class Round
{
open var id:String? = null
open var createdAt:Date? = null
open var updatedAt:Date? = null
open var status:RoundStatus? = null
open var configuration:RoundConfiguration? = null
open var odds:HashMap<Int,Outcome>? = null
open var jackpotInfo:JackpotInfo? = null
open var sequence:String? = null
open var progress:RoundProgress? = null
open var isLocked:Boolean? = null
open var isCalculated:Boolean? = null
}
enum class RoundStatus(val value:Int)
{
@SerializedName("0") Pending(0),
@SerializedName("1") InProgress(1),
@SerializedName("2") Ended(2),
}
open class RoundConfiguration
{
open var countdownDurationInSeconds:Int? = null
open var raceDurationInSeconds:Int? = null
open var resultsDurationInSeconds:Int? = null
open var rtpStrategy:RTPStrategies? = null
}
enum class RTPStrategies(val value:Int)
{
@SerializedName("0") Rng(0),
@SerializedName("1") Default(1),
}
open class Outcome
{
open var id:Int? = null
open var odds:Float? = null
open var status:OutcomeStatus? = null
}
enum class OutcomeStatus(val value:Int)
{
@SerializedName("0") Unknown(0),
@SerializedName("1") Lost(1),
@SerializedName("2") Won(2),
@SerializedName("3") Void(3),
}
open class JackpotInfo
{
open var isGiven:Boolean? = null
open var id:String? = null
open var slipId:String? = null
open var jpId:String? = null
open var amount:BigDecimal? = null
open var locationId:String? = null
open var locationName:String? = null
open var addressLine:String? = null
open var amountAccumulated:BigDecimal? = null
}
open class RoundProgress
{
open var stage:Stages? = null
open var step:Int? = null
open var steps:Int? = null
open var utcTimestamp:Date? = null
}
enum class Stages(val value:Int)
{
@SerializedName("0") None(0),
@SerializedName("1") Countdown(1),
@SerializedName("2") Processing(2),
@SerializedName("3") Race(3),
@SerializedName("4") Results(4),
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /feed/odds HTTP/1.1
Host: grh1.api.bettor.webhop.biz
Accept: application/json
Content-Type: application/json
Content-Length: length
{}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"id":"String","rounds":[{"id":"String","odds":[{"id":0,"val":0}]}]}