-
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
There're two
Member
types 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 …