trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
14 lines (13 loc) • 423 B
TypeScript
import { BaseEntity, Fixture, Livescore, Market } from '../../../../entities/core-entities/index.js';
/**
* GetEventsResultElement class is responsible
* for deserializing the response from the snapshot
* API to get events
*/
export declare class GetEventsResultElement implements BaseEntity {
[key: string]: unknown;
fixture: Fixture;
livescore: Livescore;
markets?: Market[];
fixtureId: number;
}