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.
2 parents c9556b2 + 1315e73 commit d1a8796Copy full SHA for d1a8796
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