UNPKG

trade360-nodejs-sdk

Version:
21 lines (20 loc) 796 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'; import { FixtureVenue } from '../../../../entities/core-entities/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; venue?: FixtureVenue; }