Variable ForceCreativeStatusSchemaConst
ForceCreativeStatusSchema: ZodObject<
{
scenario: ZodLiteral<"force_creative_status">;
params: ZodObject<
{
creative_id: ZodString;
status: ZodUnion<
readonly [
ZodLiteral<"processing">,
ZodLiteral<"pending_review">,
ZodLiteral<"approved">,
ZodLiteral<"rejected">,
ZodLiteral<"archived">,
],
>;
rejection_reason: ZodOptional<ZodNullable<ZodString>>;
},
$loose,
>;
context: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
ext: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
},
$loose,
> = ...