interface MatchDetails {
    periodId: number;
    matchStatus: string;
    winner: string;
    matchLengthMin: number;
    matchLengthSec: number;
    period: API.soccer.MatchStats.Period[];
    scores: API.soccer.MatchStats.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