Spaces:
Build error
Build error
File size: 679 Bytes
0827183 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from enum import Enum
class CallerIdConstants(str, Enum):
public_azure_channel = "urn:botframework:azure"
"""
The caller ID for any Bot Framework channel.
"""
us_gov_channel = "urn:botframework:azureusgov"
"""
The caller ID for any Bot Framework US Government cloud channel.
"""
bot_to_bot_prefix = "urn:botframework:aadappid:"
"""
The caller ID prefix when a bot initiates a request to another bot.
This prefix will be followed by the Azure Active Directory App ID of the bot that initiated the call.
"""
|