Answered by
qinezh
May 28, 2024
Replies: 1 comment 1 reply
|
There're two The first one is actually deprecated as one of its property (conversation) TeamsBotInstallation is deprecated and it's recommend to use the new type with the same name (conversationWithCloudAdapter) TeamsBotInstallation. There's type error from your code is, type of (conversationWithCloudAdapter) TeamsBotInstallation is retuned by For your issue, you may take a look at the sample app of Large Scale Notification Bot if you have performance concerns about sending notifications. |
1 reply
Answer selected by
qinezh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



There're two
Membertypes in TeamsFx SDK:The first one is actually deprecated as one of its property (conversation) TeamsBotInstallation is deprecated and it's recommend to use the new type with the same name (conversationWithCloudAdapter) TeamsBotInstallation.
There's type error from your code is, type of (conversationWithCloudAdapter) TeamsBotInstallation is retuned by
buildTeamsBotInstallation, while the constructor of (conversation) Member requires type of (conversation) TeamsBotInstallationFor your issue, you may take a look at the sample app of Large Scale Notification Bot if you have performance concerns about sending …