Variable RightsPricingOptionSchemaConst
RightsPricingOptionSchema: ZodObject<
{
pricing_option_id: ZodString;
model: ZodUnion<
readonly [
ZodLiteral<"cpm">,
ZodLiteral<"vcpm">,
ZodLiteral<"cpc">,
ZodLiteral<"cpcv">,
ZodLiteral<"cpv">,
ZodLiteral<"cpp">,
ZodLiteral<"cpa">,
ZodLiteral<"flat_rate">,
ZodLiteral<"time">,
],
>;
price: ZodNumber;
currency: ZodString;
uses: ZodArray<
ZodUnion<
readonly [
ZodLiteral<"likeness">,
ZodLiteral<"voice">,
ZodLiteral<"name">,
ZodLiteral<"endorsement">,
ZodLiteral<"motion_capture">,
ZodLiteral<"signature">,
ZodLiteral<"catchphrase">,
ZodLiteral<"sync">,
ZodLiteral<"background_music">,
ZodLiteral<"editorial">,
ZodLiteral<"commercial">,
ZodLiteral<"ai_generated_image">,
],
>,
>;
period: ZodOptional<
ZodUnion<
readonly [
ZodLiteral<"daily">,
ZodLiteral<"weekly">,
ZodLiteral<"monthly">,
ZodLiteral<"quarterly">,
ZodLiteral<"annual">,
ZodLiteral<"one_time">,
],
>,
>;
impression_cap: ZodOptional<ZodNumber>;
overage_cpm: ZodOptional<ZodNumber>;
description: ZodOptional<ZodString>;
ext: ZodOptional<ZodObject<{}, $loose>>;
},
$loose,
> = ...