I am using Bot framework V4 to Build bot and enabled it in Teams.
I am using this code to Show Typing Indicator from bot :-
Activity replyTyping = activity.CreateReply();
replyTyping.Type = ActivityTypes.Typing;
await dc.Context.SendActivityAsync(replyTyping);
Because of this bot is Showing "My Bot is typing..." but I want different typing indicators based on users.(want to show different Bot name for different Users)
Can we do that?
Please help. Thanks.