trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
13 lines (12 loc) • 511 B
TypeScript
import { OutrightMarketBodyStructure } from './outright-market-body-structure';
import { OutrightLeagueFixtureSnapshot } from './outright-league-fixture-snapshot';
/**
* Outright League Event Body Structure class is responsible for
* deserializing the response from the snapshot API to a
* outright league event body structure.
*/
export declare class OutrightLeagueEventBodyStructure {
fixtureId: number;
markets: OutrightMarketBodyStructure[];
outrightLeague: OutrightLeagueFixtureSnapshot;
}