@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
22 lines (21 loc) • 440 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Constants representing caller IDs.
*/
export declare const CallerIdConstants: {
/**
* Public Azure channel caller ID.
*/
PublicAzureChannel: string;
/**
* US Government channel caller ID.
*/
USGovChannel: string;
/**
* Agent prefix for caller ID.
*/
AgentPrefix: string;
};