interface Goal {
    contestantId: string;
    periodId: number;
    timeMin: number;
    timeMinSec: string;
    lastUpdated: Date;
    timestamp: Date;
    type: GoalType;
    scorerId: string;
    scorerName: string;
    optaEventId: string;
    homeScore: number;
    awayScore: number;
    assistPlayerId?: string;
    assistPlayerName?: string;
    secondAssistPlayerId?: string;
    ocSecondAssistPlayerId?: string;
    opSecondAssistPlayerId?: string;
    secondAssistPlayerName?: string;
    varReviewed?: API.soccer.Match.Neutral;
    originalDecision?: VarReason;
}

Properties

contestantId: string
periodId: number
timeMin: number
timeMinSec: string
lastUpdated: Date
timestamp: Date
type: GoalType
scorerId: string
scorerName: string
optaEventId: string
homeScore: number
awayScore: number
assistPlayerId?: string
assistPlayerName?: string
secondAssistPlayerId?: string
ocSecondAssistPlayerId?: string
opSecondAssistPlayerId?: string
secondAssistPlayerName?: string
varReviewed?: API.soccer.Match.Neutral
originalDecision?: VarReason