Variable PerformanceFeedbackSchemaConst
PerformanceFeedbackSchema: ZodObject<
{
feedback_id: ZodString;
media_buy_id: ZodString;
package_id: ZodOptional<ZodString>;
creative_id: ZodOptional<ZodString>;
measurement_period: ZodObject<
{ start: ZodISODateTime; end: ZodISODateTime },
$loose,
>;
performance_index: ZodNumber;
metric_type: 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: ZodUnion<
readonly [
ZodLiteral<"buyer_attribution">,
ZodLiteral<"third_party_measurement">,
ZodLiteral<"platform_analytics">,
ZodLiteral<"verification_partner">,
],
>;
status: ZodUnion<
readonly [
ZodLiteral<"accepted">,
ZodLiteral<"queued">,
ZodLiteral<"applied">,
ZodLiteral<"rejected">,
],
>;
submitted_at: ZodISODateTime;
applied_at: ZodOptional<ZodISODateTime>;
},
$loose,
> = ...