trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
20 lines (19 loc) • 710 B
TypeScript
import { SportsBodyStructure } from './sports-body-structure';
import { LocationsBodyStructure } from './locations-body-structure';
import { LeaguesBodyStructure } from './leagues-body-structure';
import { ParticipantSchedule } from './participant-schedule';
/**
* Fixture Schedule Body Structure class is responsible for
* deserializing the response from the subscription API to a
* fixture schedule body structure.
*/
export declare class FixturesScheduleBodyStructure {
fixtureId: number;
sport: SportsBodyStructure;
location: LocationsBodyStructure;
league: LeaguesBodyStructure;
startDate: Date;
lastUpdate: Date;
status: number;
participants: ParticipantSchedule[];
}