@adcp/client API Reference - v4.19.0
    Preparing search index...

    Interface PlannedDelivery

    The seller's interpreted delivery parameters. Describes what the seller will actually run -- geo, channels, flight dates, frequency caps, and budget. Present when the account has governance_agents or when the seller chooses to provide delivery transparency.

    interface PlannedDelivery {
        geo?: { countries?: string[]; regions?: string[] };
        channels?: MediaChannel[];
        start_time?: string;
        end_time?: string;
        frequency_cap?: FrequencyCap;
        audience_summary?: string;
        audience_targeting?: AudienceSelector[];
        total_budget?: number;
        currency?: string;
        enforced_policies?: string[];
        ext?: ExtensionObject;
    }
    Index

    Properties

    geo?: { countries?: string[]; regions?: string[] }

    Geographic targeting the seller will apply.

    Type Declaration

    • Optionalcountries?: string[]

      ISO 3166-1 alpha-2 country codes where ads will deliver.

    • Optionalregions?: string[]

      ISO 3166-2 subdivision codes where ads will deliver.

    channels?: MediaChannel[]

    Channels the seller will deliver on.

    start_time?: string

    Actual flight start the seller will use.

    end_time?: string

    Actual flight end the seller will use.

    frequency_cap?: FrequencyCap
    audience_summary?: string

    Human-readable summary of the audience the seller will target.

    audience_targeting?: AudienceSelector[]

    Structured audience targeting the seller will activate. Each entry is either a signal reference or a descriptive criterion. When present, governance agents MUST use this for bias/fairness validation and SHOULD ignore audience_summary for validation purposes. The audience_summary field is a human-readable rendering of this array, not an independent declaration.

    total_budget?: number

    Total budget the seller will deliver against.

    currency?: string

    ISO 4217 currency code for the budget.

    enforced_policies?: string[]

    Registry policy IDs the seller will enforce for this delivery.

    ext?: ExtensionObject