trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
18 lines (17 loc) • 488 B
TypeScript
import { Participant } from './participant';
/**
* SubscribedFixtureBodyStructure class is responsible for
* deserializing the response from the subscription API to a
* subscribed fixture body structure.
*/
export declare class SubscribedFixtureBodyStructure {
fixtureId: number;
fixtureName?: string;
startDate: Date;
lastUpdate: Date;
sportId: number;
locationId: number;
leagueId: number;
fixtureStatus?: number;
participants?: Participant[];
}