Variable ForceMediaBuyStatusSchemaConst
ForceMediaBuyStatusSchema: ZodObject<
{
scenario: ZodLiteral<"force_media_buy_status">;
params: ZodObject<
{
media_buy_id: ZodString;
status: ZodUnion<
readonly [
ZodLiteral<"pending_activation">,
ZodLiteral<"active">,
ZodLiteral<"paused">,
ZodLiteral<"completed">,
ZodLiteral<"rejected">,
ZodLiteral<"canceled">,
],
>;
rejection_reason: ZodOptional<ZodNullable<ZodString>>;
},
$loose,
>;
context: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
ext: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
},
$loose,
> = ...