Variable AttributionWindowSchemaConst
AttributionWindowSchema: ZodObject<
{
post_click: ZodOptional<
ZodNullable<
ZodObject<
{
interval: ZodNumber;
unit: ZodUnion<
readonly [
ZodLiteral<"seconds">,
ZodLiteral<"minutes">,
ZodLiteral<"hours">,
ZodLiteral<"days">,
ZodLiteral<"campaign">,
],
>;
},
$loose,
>,
>,
>;
post_view: ZodOptional<
ZodNullable<
ZodObject<
{
interval: ZodNumber;
unit: ZodUnion<
readonly [
ZodLiteral<"seconds">,
ZodLiteral<"minutes">,
ZodLiteral<"hours">,
ZodLiteral<"days">,
ZodLiteral<"campaign">,
],
>;
},
$loose,
>,
>,
>;
model: ZodUnion<
readonly [
ZodLiteral<"last_touch">,
ZodLiteral<"first_touch">,
ZodLiteral<"linear">,
ZodLiteral<"time_decay">,
ZodLiteral<"data_driven">,
],
>;
},
$loose,
> = ...