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

Properties

periodId: number
matchStatus: MatchStatus
winner?: Winner
matchLengthMin?: number
matchLengthSec?: number
period?: API.soccer.Match.Period[]
delay?: string
varReason?: VarReason
contestantId?: string
playerId?: string