File tree 1 file changed +19
-1
lines changed
api/src/main/java/com/messagebird/objects/conversations
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,25 @@ public enum ConversationMessageStatus {
15
15
READ ("read" ),
16
16
RECEIVED ("received" ),
17
17
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" );
19
37
20
38
private final String status ;
21
39
You can’t perform that action at this time.
0 commit comments