@adcp/client API Reference - v4.19.0
    Preparing search index...

    Variable ReportingWebhookSchemaConst

    ReportingWebhookSchema: ZodObject<
        {
            url: ZodString;
            token: ZodOptional<ZodNullable<ZodString>>;
            authentication: ZodObject<
                {
                    schemes: ZodArray<
                        ZodUnion<readonly [ZodLiteral<"Bearer">, ZodLiteral<"HMAC-SHA256">]>,
                    >;
                    credentials: ZodString;
                },
                $loose,
            >;
            reporting_frequency: ZodUnion<
                readonly [
                    ZodLiteral<"hourly">,
                    ZodLiteral<"daily">,
                    ZodLiteral<"monthly">,
                ],
            >;
            requested_metrics: ZodOptional<
                ZodNullable<
                    ZodArray<
                        ZodUnion<
                            readonly [
                                ZodLiteral<"impressions">,
                                ZodLiteral<"spend">,
                                ZodLiteral<"clicks">,
                                ZodLiteral<"ctr">,
                                ZodLiteral<"video_completions">,
                                ZodLiteral<"completion_rate">,
                                ZodLiteral<"conversions">,
                                ZodLiteral<"conversion_value">,
                                ZodLiteral<"roas">,
                                ZodLiteral<"cost_per_acquisition">,
                                ZodLiteral<"new_to_brand_rate">,
                                ZodLiteral<"viewability">,
                                ZodLiteral<"engagement_rate">,
                                ZodLiteral<"views">,
                                ZodLiteral<"completed_views">,
                                ZodLiteral<"leads">,
                                ZodLiteral<"reach">,
                                ZodLiteral<"frequency">,
                                ZodLiteral<"grps">,
                                ZodLiteral<"quartile_data">,
                                ZodLiteral<"dooh_metrics">,
                                ZodLiteral<"cost_per_click">,
                            ],
                        >,
                    >,
                >,
            >;
        },
        $loose,
    > = ...