IBotStorageData interface

Data values persisted to IBotStorage.

Properties

conversationData

The bots shared data for a conversation. This data is visible to every user within the conversation.

privateConversationData

The bots private data for a conversation. This data is only visible to the given user within the conversation. The session stores its session state using privateConversationData so it should always be persisted.

userData

The bots data about a user. This data is global across all of the users conversations.

Property Details

conversationData

The bots shared data for a conversation. This data is visible to every user within the conversation.

conversationData?: any

Property Value

any

privateConversationData

The bots private data for a conversation. This data is only visible to the given user within the conversation. The session stores its session state using privateConversationData so it should always be persisted.

privateConversationData?: any

Property Value

any

userData

The bots data about a user. This data is global across all of the users conversations.

userData?: any

Property Value

any