Bitmovin Player API 8.268.0
    Preparing search index...

    Interface DeficiencyData

    A snapshot of the underlying player error that caused an AdvertisingError, when one is available (e.g. a network or decoding failure during ad playback). It exposes the original cause - including the player error code and any additional data - which would otherwise be lost behind the ad error code.

    interface DeficiencyData {
        code: number;
        data?: { [key: string]: unknown };
        message?: string;
        name?: string;
    }
    Index
    code: number

    The original player error code (a Core.ErrorCode), e.g. distinguishing a network from a decoding failure.

    data?: { [key: string]: unknown }

    Additional data attached to the original player error.

    message?: string

    The message of the original player error.

    name?: string

    The name of the original player error code.