| All Verbs | /qry/bets/cancInfo |
|---|
"use strict";
export class BetCancellationInfo {
/** @param {{canCancel?:boolean,errors?:{ [index:string]: string; }}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {boolean} */
canCancel;
/** @type {{ [index:string]: string; }} */
errors;
}
export class GetBetCancellationInfo {
/** @param {{betId?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
betId;
}
JavaScript GetBetCancellationInfo DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /qry/bets/cancInfo HTTP/1.1
Host: s4w2.api.bettor.cc
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
betId: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
canCancel: False,
errors:
{
String: String
}
}