Skip to content

Commit

Permalink
Prefix demo methods with object
Browse files Browse the repository at this point in the history
  • Loading branch information
Simatwa committed Dec 21, 2023
1 parent 20bb1b1 commit 5b9120d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,19 +473,19 @@ Other attributes include:
```
- Delete conversation :
```py
delete_conversation(conversation_id: str)
bot.delete_conversation(conversation_id: str)
```
- Retrieve shared conversations :
```py
shared_conversations()
bot.shared_conversations()
```
- Stop sharing conversation :
```py
stop_sharing_conversation(share_id : str)
bot.stop_sharing_conversation(share_id : str)
```
- Archive conversation :
```py
archive_conversation(conversation_id : str)
bot.archive_conversation(conversation_id : str)
```

For further info, purpose to review the [flow of operations.](operations_flow.md)
Expand Down

0 comments on commit 5b9120d

Please sign in to comment.