trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
12 lines (11 loc) • 468 B
TypeScript
import { OutrightParticipantResultBodyStructure } from './outright-participant-body-structure';
import { FixtureStatus } from '../../../../entities/core-entities/enums';
/**
* Outright Score Element class is responsible for
* deserializing the response from the snapshot API to a
* outright score element structure.
*/
export declare class OutrightScoreBodyStructure {
participantResults: OutrightParticipantResultBodyStructure[];
status: FixtureStatus;
}