File tree Expand file tree Collapse file tree 2 files changed +0
-27
lines changed
src/main/java/com/currencyfair/onesignal/model/notification Expand file tree Collapse file tree 2 files changed +0
-27
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,6 @@ public class CreateNotificationResponse {
27
27
*/
28
28
private String id ;
29
29
30
- /**
31
- * Number of recipients that receive the notification.
32
- */
33
- private Integer recipients ;
34
-
35
30
/**
36
31
* Not strictly defined so treating it dynamically... No smart mapping to a class can be done since errors content
37
32
* can be an array of strings (as error messages) or a JSON object (as "invalid_player_ids").
@@ -46,14 +41,6 @@ public void setId(String id) {
46
41
this .id = id ;
47
42
}
48
43
49
- public Integer getRecipients () {
50
- return recipients ;
51
- }
52
-
53
- public void setRecipients (Integer recipients ) {
54
- this .recipients = recipients ;
55
- }
56
-
57
44
public Object getErrors () {
58
45
return errors ;
59
46
}
Original file line number Diff line number Diff line change @@ -30,12 +30,6 @@ public class ViewNotificationResponse extends Notification {
30
30
*/
31
31
private Long successful ;
32
32
33
- /**
34
- * Number of notifications that have not been sent out yet. This can mean either our system is still processing the
35
- * notification or you have delayed options set.
36
- */
37
- private Long remaining ;
38
-
39
33
/**
40
34
* Number of notifications that could not be delivered due to an error. You can find more information by viewing
41
35
* the notification in the dashboard.
@@ -78,14 +72,6 @@ public void setSuccessful(Long successful) {
78
72
this .successful = successful ;
79
73
}
80
74
81
- public Long getRemaining () {
82
- return remaining ;
83
- }
84
-
85
- public void setRemaining (Long remaining ) {
86
- this .remaining = remaining ;
87
- }
88
-
89
75
public Long getFailed () {
90
76
return failed ;
91
77
}
You can’t perform that action at this time.
0 commit comments