interface MissedPen {
    contestantId: string;
    periodId: number;
    timeMin: number;
    timeMinSec: string;
    lastUpdated: Date;
    type: MissedPenType;
    playerId: string;
    playerName: string;
    optaEventId: string;
    timestamp?: Date;
}

Properties

contestantId: string
periodId: number
timeMin: number
timeMinSec: string
lastUpdated: Date
playerId: string
playerName: string
optaEventId: string
timestamp?: Date