| All Verbs | /qry//metrics/e2e/slips/responses |
|---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*
open class FindResponseMetrics : PaginatedQuery()
{
open var resolution:TimeResolution? = null
open var timepointFrom:Long? = null
open var timepointTo:Long? = null
}
open class PaginatedQuery
{
open var currentPage:Int? = null
open var pageSize:Int? = null
}
enum class TimeResolution(val value:Int)
{
@SerializedName("1") Second(1),
@SerializedName("2") Minute(2),
@SerializedName("5") Hour(5),
@SerializedName("10") Day(10),
}
open class PaginatedResult<T> : IPaginatedResult
{
@SerializedName("data") open var Data:ArrayList<ResponseMetrics> = ArrayList<ResponseMetrics>()
override var currentPage:Long? = null
override var pageSize:Long? = null
override var totalItems:Long? = null
override var totalPages:Long? = null
}
open class ResponseMetrics
{
open var id:Long? = null
open var rqc:Int? = null
open var oc:Int? = null
open var sc:Int? = null
open var tc:Int? = null
open var adr:Int? = null
}
Kotlin FindResponseMetrics DTOs
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//metrics/e2e/slips/responses HTTP/1.1
Host: api.sbbet.ath.cx
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<FindResponseMetrics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Betting.WebApi.ServiceModel">
<CurrentPage>0</CurrentPage>
<PageSize>0</PageSize>
<Resolution>Second</Resolution>
<TimepointFrom>0</TimepointFrom>
<TimepointTo>0</TimepointTo>
</FindResponseMetrics>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<PaginatedResultOfResponseMetricsrl_PWBLso xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Starnet.Common">
<CurrentPage>0</CurrentPage>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Betting.ReadModel.E2E.SlipRequestMetrics">
<d2p1:ResponseMetrics>
<d2p1:Adr>0</d2p1:Adr>
<d2p1:Id>0</d2p1:Id>
<d2p1:Oc>0</d2p1:Oc>
<d2p1:Rqc>0</d2p1:Rqc>
<d2p1:Sc>0</d2p1:Sc>
<d2p1:Tc>0</d2p1:Tc>
</d2p1:ResponseMetrics>
</Data>
<PageSize>0</PageSize>
<TotalItems>0</TotalItems>
<TotalPages>0</TotalPages>
</PaginatedResultOfResponseMetricsrl_PWBLso>