| 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 .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 /qry//metrics/e2e/slips/responses HTTP/1.1
Host: api.sbbet.ath.cx
Accept: application/json
Content-Type: application/json
Content-Length: length
{"resolution":1,"timepointFrom":0,"timepointTo":0,"currentPage":0,"pageSize":0}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"data":[{"id":0,"rqc":0,"oc":0,"sc":0,"tc":0,"adr":0}],"currentPage":0,"pageSize":0,"totalItems":0,"totalPages":0}