UNPKG

trade360-nodejs-sdk

Version:

LSports Trade360 SDK for Node.js

19 lines (18 loc) 694 B
import { SportsBodyStructure } from './sports-body-structure'; import { LocationsBodyStructure } from './locations-body-structure'; import { ParticipantSchedule } from './participant-schedule'; import { Subscription } from '../../../../entities/core-entities/common/index.js'; /** * Outright Fixture Element class is responsible for * deserializing the response from the snapshot API to a * outright fixture element structure. */ export declare class OutrightFixtureBodyStructure { sport: SportsBodyStructure; location: LocationsBodyStructure; startDate: Date; lastUpdate: Date; status: number; participants: ParticipantSchedule[]; subscription: Subscription; }