@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
23 lines (21 loc) • 471 B
text/typescript
/**
* 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:'
}