Type alias ConversationPluginData

ConversationPluginData: string | number | boolean | null | undefined | Date | ConversationPluginData[] | {
    [key: string]: ConversationPluginData;
}

The data stored by a plugin in the pluginsData property of the ConversationModel returned by the Conversation.toJSON method.

Type declaration

Remarks

Must be a serializable type.

Generated using TypeDoc