CML
    Preparing search index...

    Type Alias CmcdReporterConfig<C>

    CmcdReporterConfig: CmcdRequestReportConfig<C> & {
        cid?: string;
        eventTargets?: CmcdEventReportConfig<C>[];
        sid?: string;
    }

    Configuration for a CMCD reporting component.

    Type Parameters

    • C = Record<string, unknown>

      The shape of the player's customData on the requests this reporter sees. Annotating a single transform is enough for the rest of the configuration to infer it. Defaults to Record<string, unknown>.

    Type Declaration

    • Optionalcid?: string

      The content ID.

      undefined

    • OptionaleventTargets?: CmcdEventReportConfig<C>[]

      The event configurations. If not provided, no events will be reported.

      undefined

    • Optionalsid?: string

      The session ID. If not provided, a new random session ID will be generated.

      undefined