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