Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion articles/v4sdk/bot-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The Bot Connector Service allows you to develop your bot in a channel-agnostic w

## Activities and conversations

The Bot Connector Service uses JSON to exchange information between the bot and the user, and the Bot Builder SDK wraps this information in a language-specific activity object. [Activity types](../bot-service-activities-entities.md) were mentioned in when discussing [interaction with your bot](bot-builder-basics.md#interaction-with-your-bot), with the most common type of activity is a message, but the other activity types are important too. These include a conversation update, contact relation update, delete user data, end of conversation, typing, message reaction, and a couple other bot specific activites that the user will likely never see. Details on each of these and when they happen can be found in our activity reference content.
The Bot Connector Service uses JSON to exchange information between the bot and the user, and the Bot Builder SDK wraps this information in a language-specific activity object. [Activity types](../bot-service-activities-entities.md) were mentioned when discussing [interaction with your bot](bot-builder-basics.md#interaction-with-your-bot), with the most common type of activity is a message, but the other activity types are important too. These include a conversation update, contact relation update, delete user data, end of conversation, typing, message reaction, and a couple other bot specific activites that the user will likely never see. Details on each of these and when they happen can be found in our activity reference content.

Every turn and it's associated activity belongs to a logical **conversation**, which represents an interaction between one or more bots and a specific user or group of users. A conversation is specific to a channel and has an ID that is unique to that channel.

Expand Down