Betting.WebApi

<back to all web services

FindResponseMetrics

The following routes are available for this service:
All Verbs/qry//metrics/e2e/slips/responses
import Foundation
import ServiceStack

public class FindResponseMetrics : PaginatedQuery
{
    public var resolution:TimeResolution
    public var timepointFrom:Int
    public var timepointTo:Int

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case resolution
        case timepointFrom
        case timepointTo
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        resolution = try container.decodeIfPresent(TimeResolution.self, forKey: .resolution)
        timepointFrom = try container.decodeIfPresent(Int.self, forKey: .timepointFrom)
        timepointTo = try container.decodeIfPresent(Int.self, forKey: .timepointTo)
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if resolution != nil { try container.encode(resolution, forKey: .resolution) }
        if timepointFrom != nil { try container.encode(timepointFrom, forKey: .timepointFrom) }
        if timepointTo != nil { try container.encode(timepointTo, forKey: .timepointTo) }
    }
}

public class PaginatedQuery : Codable
{
    public var currentPage:Int
    public var pageSize:Int

    required public init(){}
}

public enum TimeResolution : Int, Codable
{
    case Second = 1
    case Minute = 2
    case Hour = 5
    case Day = 10
}

public class PaginatedResult<T : Codable> : IPaginatedResult, Codable
{
    public var data:[ResponseMetrics] = []
    public var currentPage:Int
    public var pageSize:Int
    public var totalItems:Int
    public var totalPages:Int

    required public init(){}
}

public class ResponseMetrics : Codable
{
    public var id:Int
    public var rqc:Int
    public var oc:Int
    public var sc:Int
    public var tc:Int
    public var adr:Int

    required public init(){}
}


Swift FindResponseMetrics DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + 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.beto2.webhop.biz 
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>