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

    Type Alias Deployment

    Deployment:
        | {
            type: "platform";
            platform: string;
            account?: string;
            is_live: boolean;
            activation_key?: ActivationKey;
            estimated_activation_duration_minutes?: number;
            deployed_at?: string;
        }
        | {
            type: "agent";
            agent_url: string;
            account?: string;
            is_live: boolean;
            activation_key?: ActivationKey;
            estimated_activation_duration_minutes?: number;
            deployed_at?: string;
        }

    A signal deployment to a specific deployment target with activation status and key

    Type Declaration

    • {
          type: "platform";
          platform: string;
          account?: string;
          is_live: boolean;
          activation_key?: ActivationKey;
          estimated_activation_duration_minutes?: number;
          deployed_at?: string;
      }
      • type: "platform"

        Discriminator indicating this is a platform-based deployment

      • platform: string

        Platform identifier for DSPs

      • Optionalaccount?: string

        Account identifier if applicable

      • is_live: boolean

        Whether signal is currently active on this deployment

      • Optionalactivation_key?: ActivationKey
      • Optionalestimated_activation_duration_minutes?: number

        Estimated time to activate if not live, or to complete activation if in progress

        0

      • Optionaldeployed_at?: string

        Timestamp when activation completed (if is_live=true)

        date-time

    • {
          type: "agent";
          agent_url: string;
          account?: string;
          is_live: boolean;
          activation_key?: ActivationKey;
          estimated_activation_duration_minutes?: number;
          deployed_at?: string;
      }
      • type: "agent"

        Discriminator indicating this is an agent URL-based deployment

      • agent_url: string

        URL identifying the deployment agent

      • Optionalaccount?: string

        Account identifier if applicable

      • is_live: boolean

        Whether signal is currently active on this deployment

      • Optionalactivation_key?: ActivationKey
      • Optionalestimated_activation_duration_minutes?: number

        Estimated time to activate if not live, or to complete activation if in progress

        0

      • Optionaldeployed_at?: string

        Timestamp when activation completed (if is_live=true)

        date-time