Buzzr Sports Engine API
    Preparing search index...

    Type Alias EntertainmentGameInput

    type EntertainmentGameInput = {
        awayScore?: number | null;
        awayTeam?: string;
        entertainmentScore?: number | null;
        gameType?: "regular" | "playin" | "playoff" | string & {} | null;
        homeScore?: number | null;
        homeTeam?: string;
        league?: BuzzGameLeague;
        localStartHour?: number | null;
        narratives?: BuzzNarrativeFlags;
        predictedEntertainmentScore?: number | null;
        startsAt?: string;
        status?: BuzzGameStatus;
        venueUtcOffsetMinutes?: number | null;
    }
    Index

    Properties

    awayScore?: number | null
    awayTeam?: string
    entertainmentScore?: number | null
    gameType?: "regular" | "playin" | "playoff" | string & {} | null
    homeScore?: number | null
    homeTeam?: string
    localStartHour?: number | null

    Explicit local start hour (0-23) at the venue. Takes precedence over any offset-based derivation when present.

    narratives?: BuzzNarrativeFlags
    predictedEntertainmentScore?: number | null
    startsAt?: string
    venueUtcOffsetMinutes?: number | null

    Explicit venue UTC offset in minutes (e.g. -240 for EDT). When present it overrides the default US Eastern local-time derivation for primetime and weekend detection.