/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */

/**
 * Constants representing caller IDs.
 */
export const CallerIdConstants = {
  /**
   * Public Azure channel caller ID.
   */
  PublicAzureChannel: 'urn:botframework:azure',
  /**
   * US Government channel caller ID.
   */
  USGovChannel: 'urn:botframework:azureusgov',
  /**
   * Agent prefix for caller ID.
   */
  AgentPrefix: 'urn:botframework:aadappid:'
}
