Six4Win.WebApi

<back to all web services

GetLastRoundsStats

The following routes are available for this service:
All Verbs/qry/stats/last10
"use strict";
export class Rating {
    /** @param {{val?:number,count?:number}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    val;
    /** @type {number} */
    count;
}
export class Comparison {
    /** @param {{v1?:number,v2?:number,p1?:number,p2?:number}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    v1;
    /** @type {number} */
    v2;
    /** @type {number} */
    p1;
    /** @type {number} */
    p2;
}
export class LastRoundsStats {
    /** @param {{id?:string,topSix?:number[],bottomSix?:number[],topFirstColors?:Rating[],topColors?:Rating[],firstNrEvenVsOdd?:Comparison,firstNrLessVsGreater24_5?:Comparison,sumOfFirstFiveLessVsGreaterThan122_5?:Comparison,totalEvenVsOdd?:Comparison}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {string} */
    id;
    /** @type {number[]} */
    topSix;
    /** @type {number[]} */
    bottomSix;
    /** @type {Rating[]} */
    topFirstColors;
    /** @type {Rating[]} */
    topColors;
    /** @type {Comparison} */
    firstNrEvenVsOdd;
    /** @type {Comparison} */
    firstNrLessVsGreater24_5;
    /** @type {Comparison} */
    sumOfFirstFiveLessVsGreaterThan122_5;
    /** @type {Comparison} */
    totalEvenVsOdd;
}
export class GetLastRoundsStats {
    constructor(init) { Object.assign(this, init) }
}

JavaScript GetLastRoundsStats 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/stats/last10 HTTP/1.1 
Host: s4w2.api.bettor.cc 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<GetLastRoundsStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Six4Win.WebApi.ServiceModel" />
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<LastRoundsStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Six4Win.ReadModel.Stats">
  <BottomSix xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>0</d2p1:int>
  </BottomSix>
  <FirstNrEvenVsOdd>
    <V1>0</V1>
    <V2>0</V2>
  </FirstNrEvenVsOdd>
  <FirstNrLessVsGreater24_5>
    <V1>0</V1>
    <V2>0</V2>
  </FirstNrLessVsGreater24_5>
  <Id>String</Id>
  <SumOfFirstFiveLessVsGreaterThan122_5>
    <V1>0</V1>
    <V2>0</V2>
  </SumOfFirstFiveLessVsGreaterThan122_5>
  <TopColors>
    <LastRoundsStats.Rating>
      <Count>0</Count>
      <Val>0</Val>
    </LastRoundsStats.Rating>
  </TopColors>
  <TopFirstColors>
    <LastRoundsStats.Rating>
      <Count>0</Count>
      <Val>0</Val>
    </LastRoundsStats.Rating>
  </TopFirstColors>
  <TopSix xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>0</d2p1:int>
  </TopSix>
  <TotalEvenVsOdd>
    <V1>0</V1>
    <V2>0</V2>
  </TotalEvenVsOdd>
</LastRoundsStats>