@adcp/client API Reference - v4.19.0
    Preparing search index...

    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,
    > = ...