Variable ProvidePerformanceFeedbackRequestSchemaConst
ProvidePerformanceFeedbackRequestSchema: ZodObject<
{
media_buy_id: ZodString;
idempotency_key: ZodOptional<ZodNullable<ZodString>>;
measurement_period: ZodObject<
{ start: ZodString; end: ZodString },
$loose,
>;
performance_index: ZodNumber;
package_id: ZodOptional<ZodNullable<ZodString>>;
creative_id: ZodOptional<ZodNullable<ZodString>>;
metric_type: ZodOptional<
ZodNullable<
ZodUnion<
readonly [
ZodLiteral<"overall_performance">,
ZodLiteral<"conversion_rate">,
ZodLiteral<"brand_lift">,
ZodLiteral<"click_through_rate">,
ZodLiteral<"completion_rate">,
ZodLiteral<"viewability">,
ZodLiteral<"brand_safety">,
ZodLiteral<"cost_efficiency">,
],
>,
>,
>;
feedback_source: ZodOptional<
ZodNullable<
ZodUnion<
readonly [
ZodLiteral<"buyer_attribution">,
ZodLiteral<"third_party_measurement">,
ZodLiteral<"platform_analytics">,
ZodLiteral<"verification_partner">,
],
>,
>,
>;
context: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
ext: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
},
$loose,
> = ...