trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
13 lines (12 loc) • 378 B
TypeScript
import { OutrightCompetition } from './outright-competition';
/**
* Outright Competition Structure class is responsible for
* deserializing the response from the snapshot API to a
* outright competition body structure.
*/
export declare class OutrightCompetitionsResultBodyStructure {
id: number;
name: string;
type: number;
events: OutrightCompetition[];
}