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

    Interface GeographicBreakdownSupport

    Geographic breakdown support for this product. Declares which geo levels and systems are available for by_geo reporting within by_package.

    interface GeographicBreakdownSupport {
        country?: boolean;
        region?: boolean;
        metro?: { [k: string]: boolean | undefined };
        postal_area?: { [k: string]: boolean | undefined };
    }
    Index

    Properties

    country?: boolean

    Supports country-level geo breakdown (ISO 3166-1 alpha-2)

    region?: boolean

    Supports region/state-level geo breakdown (ISO 3166-2)

    metro?: { [k: string]: boolean | undefined }

    Metro area breakdown support. Keys are metro-system enum values; true means supported.

    postal_area?: { [k: string]: boolean | undefined }

    Postal area breakdown support. Keys are postal-system enum values; true means supported.