trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
15 lines (14 loc) • 606 B
TypeScript
import { OutrightFixtureBodyStructure } from './outright-fixture-body-structure';
import { FixtureMarketBodyStructure } from './fixture-market-body-strcture';
import { OutrightScoreBodyStructure } from './outright-score-body-structure';
/**
* Outright Event Element class is responsible for
* deserializing the response from the snapshot API to a
* outright event element structure.
*/
export declare class OutrightEventBodyStructure {
fixtureId: number;
outrightFixture: OutrightFixtureBodyStructure;
outrightScore: OutrightScoreBodyStructure;
markets: FixtureMarketBodyStructure[];
}