Variable PreviewCreativeBatchResponseSchemaConst
PreviewCreativeBatchResponseSchema: ZodObject<
{
response_type: ZodLiteral<"batch">;
results: ZodArray<
ZodUnion<
readonly [
ZodObject<
{ success: ZodOptional<ZodNullable<ZodLiteral<true>>> },
$loose,
>,
ZodObject<
{ success: ZodOptional<ZodNullable<ZodLiteral<false>>> },
$loose,
>,
],
>,
>;
context: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
ext: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
},
$loose,
> = ...