File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
api/src/main/java/com/messagebird/objects/conversations Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,25 @@ public enum ConversationMessageStatus {
1515 READ ("read" ),
1616 RECEIVED ("received" ),
1717 SENT ("sent" ),
18- UNSUPPORTED ("unsupported" );
18+ UNSUPPORTED ("unsupported" ),
19+ ACCEPTED ("accepted" ),
20+ REJECTED ("rejected" ),
21+ UNKNOWN ("unknown" ),
22+ //WA specific statuses
23+ TRANSMITTED ("transmitted" ),
24+ //SMS specific statuses
25+ DELIVERY_FAILED ("delivery_failed" ),
26+ BUFFERED ("buffered" ),
27+ EXPIRED ("expired" ),
28+ //Email specific statuses
29+ CLICKED ("clicked" ),
30+ OPENED ("opened" ),
31+ BOUNCE ("bounce" ),
32+ SPAM_COMPLAINT ("spam_complaint" ),
33+ OUT_OF_BOUNDED ("out_of_bounded" ),
34+ DELAYED ("delayed" ),
35+ LIST_UNSUBSCRIBE ("list_unsubscribe" ),
36+ DISPATCHED ("dispatched" );
1937
2038 private final String status ;
2139
You can’t perform that action at this time.
0 commit comments