We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e122b55 commit 1315e73Copy full SHA for 1315e73
README.md
@@ -396,6 +396,12 @@ ContactMessage contactMessage = new ContactMessage()
396
.setUser(contact);
397
Conversation.create(contactMessage);
398
399
+//list all conversations
400
+ConversationCollection conversations = Conversation.list();
401
+while (conversations.hasNext()) {
402
+ Conversation conversation = conversations.next();
403
+}
404
+
405
// find admin conversations
406
Map<String, String> params = Maps.newHashMap();
407
params.put("type", "admin");
0 commit comments