Variable FrequencyCapSchemaConst
FrequencyCapSchema: ZodObject<
{
suppress: ZodOptional<
ZodNullable<
ZodObject<
{
interval: ZodNumber;
unit: ZodUnion<
readonly [
ZodLiteral<"seconds">,
ZodLiteral<"minutes">,
ZodLiteral<"hours">,
ZodLiteral<"days">,
ZodLiteral<"campaign">,
],
>;
},
$loose,
>,
>,
>;
suppress_minutes: ZodOptional<ZodNullable<ZodNumber>>;
max_impressions: ZodOptional<ZodNullable<ZodNumber>>;
per: ZodOptional<
ZodNullable<
ZodUnion<
readonly [
ZodLiteral<"individuals">,
ZodLiteral<"households">,
ZodLiteral<"devices">,
ZodLiteral<"accounts">,
ZodLiteral<"cookies">,
ZodLiteral<"custom">,
],
>,
>,
>;
window: ZodOptional<
ZodNullable<
ZodObject<
{
interval: ZodNumber;
unit: ZodUnion<
readonly [
ZodLiteral<"seconds">,
ZodLiteral<"minutes">,
ZodLiteral<"hours">,
ZodLiteral<"days">,
ZodLiteral<"campaign">,
],
>;
},
$loose,
>,
>,
>;
},
$loose,
> = ...