OptiView Ads SDK
    Preparing search index...

    Interface ConfigSummary

    Redacted SDK configuration for a diagnostic report; secrets and PII (e.g. ad tag parameter VALUES) are stripped.

    interface ConfigSummary {
        adInsertion: string;
        adPreload: string;
        breakWarnings?: { seconds: number[] };
        chaining: { enabled: boolean; maxGapSeconds: number };
        continueContentDuringBreak?: boolean;
        gam?: {
            hasAssetParameters: boolean;
            networkCode?: string;
            streamActivityMonitorId?: string;
        };
        manifestOrigin?: string;
        mode: string;
        ptsSource?: PtsSource;
        ssai?: { autoplay: boolean; maxBitrate?: number; stitcherOrigin?: string };
        tuneIn: { enabled: boolean; minBreakDurationSeconds: number };
    }
    Index
    adInsertion: string
    adPreload: string
    breakWarnings?: { seconds: number[] }

    Proactive pre-break warning configuration, if supplied.

    chaining: { enabled: boolean; maxGapSeconds: number }
    continueContentDuringBreak?: boolean

    Whether eligible replacement breaks may keep content playing.

    gam?: {
        hasAssetParameters: boolean;
        networkCode?: string;
        streamActivityMonitorId?: string;
    }

    Type Declaration

    • hasAssetParameters: boolean

      Whether any asset parameters were supplied for this session; values are omitted, only presence is reported.

    • OptionalnetworkCode?: string

      CONFIGURED network code, ssai only; in sgai the identity is manifest-authored (DA-GAM-CONFIG-RESOLVED).

    • OptionalstreamActivityMonitorId?: string
    manifestOrigin?: string

    Origin only (scheme + host [+ port]); path/query may carry channel identity or a signed token. Absent before startSession() and in SSAI.

    mode: string

    Ad insertion architecture in effect (sgai or ssai).

    ptsSource?: PtsSource

    How PTS-timebase break starts are resolved (mediaTime or anvatoCue).

    ssai?: { autoplay: boolean; maxBitrate?: number; stitcherOrigin?: string }

    SSAI stitcher summary — present only in ssai mode.

    Type Declaration

    • autoplay: boolean
    • OptionalmaxBitrate?: number
    • OptionalstitcherOrigin?: string

      Origin of the stitcher master URL — same redaction as manifestOrigin.

    tuneIn: { enabled: boolean; minBreakDurationSeconds: number }