interface MatchDetails {
    periodId: number;
    matchStatus: string;
    winner?: string;
    matchLengthMin?: number;
    matchLengthSec?: number;
    period?: API.soccer.MatchTournamentCalendar.Period[];
    scores?: API.soccer.MatchTournamentCalendar.Scores;
    delay?: string;
    varReason?: string;
    contestantId?: string;
    playerId?: string;
}

Properties

periodId: number
matchStatus: string
winner?: string
matchLengthMin?: number
matchLengthSec?: number
delay?: string
varReason?: string
contestantId?: string
playerId?: string