Variable ListCreativeFormatsResponseSchemaConst
ListCreativeFormatsResponseSchema: ZodObject<
{
formats: ZodArray<
ZodIntersection<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
ZodObject<
{
format_id: ZodIntersection<
ZodRecord<
ZodString,
ZodUnion<readonly [ZodUnknown, ZodUndefined]>,
>,
ZodObject<
{
agent_url: ZodString;
id: ZodString;
width: ZodOptional<ZodNullable<(...)>>;
height: ZodOptional<ZodNullable<(...)>>;
duration_ms: ZodOptional<ZodNullable<(...)>>;
},
$strip,
>,
>;
name: ZodString;
description: ZodOptional<ZodNullable<ZodString>>;
example_url: ZodOptional<ZodNullable<ZodString>>;
type: ZodUnion<
readonly [
ZodLiteral<"audio">,
ZodLiteral<"video">,
ZodLiteral<"display">,
ZodLiteral<"native">,
ZodLiteral<"dooh">,
ZodLiteral<"rich_media">,
ZodLiteral<"universal">,
],
>;
accepts_parameters: ZodOptional<
ZodNullable<ZodArray<ZodUnion<readonly [(...), (...)]>>>,
>;
renders: ZodOptional<
ZodNullable<
ZodTuple<[ZodUnion<(...)>], ZodUnion<readonly [(...), (...)]>>,
>,
>;
assets: ZodOptional<
ZodNullable<ZodArray<ZodUnion<readonly [(...), (...)]>>>,
>;
delivery: ZodOptional<
ZodNullable<
ZodRecord<ZodString, ZodUnion<readonly [(...), (...)]>>,
>,
>;
supported_macros: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
output_format_ids: ZodOptional<
ZodNullable<
ZodArray<
ZodIntersection<
ZodRecord<(...), (...)>,
ZodObject<(...), (...)>,
>,
>,
>,
>;
format_card: ZodOptional<
ZodNullable<
ZodIntersection<
ZodRecord<ZodString, ZodUnion<(...)>>,
ZodObject<{ format_id: ...; manifest: ... }, $strip>,
>,
>,
>;
format_card_detailed: ZodOptional<
ZodNullable<
ZodIntersection<
ZodRecord<ZodString, ZodUnion<(...)>>,
ZodObject<{ format_id: ...; manifest: ... }, $strip>,
>,
>,
>;
},
$strip,
>,
>,
>;
creative_agents: ZodOptional<
ZodNullable<
ZodArray<
ZodObject<
{
agent_url: ZodString;
agent_name: ZodOptional<ZodNullable<ZodString>>;
capabilities: ZodOptional<ZodNullable<ZodArray<ZodUnion<(...)>>>>;
},
$strip,
>,
>,
>,
>;
errors: ZodOptional<
ZodNullable<
ZodArray<
ZodIntersection<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
ZodObject<
{
code: ZodString;
message: ZodString;
field: ZodOptional<ZodNullable<ZodString>>;
suggestion: ZodOptional<ZodNullable<ZodString>>;
retry_after: ZodOptional<ZodNullable<ZodNumber>>;
details: ZodOptional<ZodNullable<ZodRecord<(...), (...)>>>;
},
$strip,
>,
>,
>,
>,
>;
context: ZodOptional<
ZodNullable<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
>,
>;
ext: ZodOptional<
ZodNullable<
ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
>,
>;
},
$strip,
> = ...