@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface CPMPricingOption

    Cost Per Mille (cost per 1,000 impressions) pricing. If fixed_price is present, it's fixed pricing. If absent, it's auction-based.

    interface CPMPricingOption {
        pricing_option_id: string;
        pricing_model: "cpm";
        currency: string;
        fixed_price?: number;
        floor_price?: number;
        max_bid?: boolean;
        price_guidance?: PriceGuidance;
        min_spend_per_package?: number;
        price_breakdown?: PriceBreakdown;
        eligible_adjustments?: PriceAdjustmentKind[];
    }
    Index

    Properties

    pricing_option_id: string

    Unique identifier for this pricing option within the product

    pricing_model: "cpm"

    Cost per 1,000 impressions

    currency: string

    ISO 4217 currency code

    ^[A-Z]{3}$

    fixed_price?: number

    Fixed price per unit. If present, this is fixed pricing. If absent, auction-based.

    0

    floor_price?: number

    Minimum acceptable bid for auction pricing (mutually exclusive with fixed_price). Bids below this value will be rejected.

    0

    max_bid?: boolean

    When true, bid_price is interpreted as the buyer's maximum willingness to pay (ceiling) rather than an exact price. Sellers may optimize actual clearing prices between floor_price and bid_price based on delivery pacing. When false or absent, bid_price (if provided) is the exact bid/price to honor.

    price_guidance?: PriceGuidance
    min_spend_per_package?: number

    Minimum spend requirement per package using this pricing option, in the specified currency

    0

    price_breakdown?: PriceBreakdown
    eligible_adjustments?: PriceAdjustmentKind[]

    Adjustment kinds applicable to this pricing option. Tells buyer agents which adjustments are available before negotiation. When absent, no adjustments are pre-declared — the buyer should check price_breakdown if present.