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