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