Variable ReportingWebhookSchemaConst
ReportingWebhookSchema: ZodIntersection<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
ZodObject<
{
url: ZodString;
token: ZodOptional<ZodNullable<ZodString>>;
authentication: ZodObject<
{
schemes: ZodTuple<
[
ZodUnion<
readonly [ZodLiteral<"Bearer">, ZodLiteral<"HMAC-SHA256">],
>,
],
null,
>;
credentials: ZodString;
},
$strip,
>;
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<"viewability">,
ZodLiteral<"engagement_rate">,
],
>,
>,
>,
>;
},
$strip,
>,
> = ...