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

    Interface FlatRatePricingOption

    Flat rate pricing for sponsorships, takeovers, and DOOH exclusive placements. A fixed total cost regardless of delivery volume. For duration-scaled pricing (rate × time units), use the time model instead. If fixed_price is present, it's fixed pricing. If absent, it's auction-based.

    interface FlatRatePricingOption {
        pricing_option_id: string;
        pricing_model: "flat_rate";
        currency: string;
        fixed_price?: number;
        floor_price?: number;
        price_guidance?: PriceGuidance;
        parameters?: DoohParameters;
        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: "flat_rate"

    Fixed cost regardless of delivery volume

    currency: string

    ISO 4217 currency code

    ^[A-Z]{3}$

    fixed_price?: number

    Flat rate cost. 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

    price_guidance?: PriceGuidance
    parameters?: DoohParameters
    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.