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

    Type Alias GetCreativeFeaturesResponse

    GetCreativeFeaturesResponse:
        | {
            results: CreativeFeatureResult[];
            detail_url?: string;
            pricing_option_id?: string;
            vendor_cost?: number;
            currency?: string;
            consumption?: CreativeConsumption;
            context?: ContextObject;
            ext?: ExtensionObject;
        }
        | { errors: Error[]; context?: ContextObject; ext?: ExtensionObject }

    Response payload for the get_creative_features task. Returns scored feature values from the governance agent's evaluation of the submitted creative manifest.

    Type Declaration

    • {
          results: CreativeFeatureResult[];
          detail_url?: string;
          pricing_option_id?: string;
          vendor_cost?: number;
          currency?: string;
          consumption?: CreativeConsumption;
          context?: ContextObject;
          ext?: ExtensionObject;
      }
      • results: CreativeFeatureResult[]

        Feature values for the evaluated creative

      • Optionaldetail_url?: string

        URL to the vendor's full assessment report. The vendor controls what information is disclosed and access control.

      • Optionalpricing_option_id?: string

        Which rate card pricing option was applied for this evaluation. Present when the governance agent charges for evaluations and account was provided in the request.

      • Optionalvendor_cost?: number

        Cost incurred for this evaluation, denominated in currency.

        0

      • Optionalcurrency?: string

        ISO 4217 currency code for vendor_cost.

        ^[A-Z]{3}$

      • Optionalconsumption?: CreativeConsumption
      • Optionalcontext?: ContextObject
      • Optionalext?: ExtensionObject
    • { errors: Error[]; context?: ContextObject; ext?: ExtensionObject }