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 86dd586 commit 9bd207bCopy full SHA for 9bd207b
src/main/java/com/currencyfair/onesignal/model/notification/Notification.java
@@ -724,6 +724,9 @@ public class Notification {
724
@JsonProperty("isChrome")
725
private Boolean chrome;
726
727
+ @JsonProperty("external_id")
728
+ private String externalId;
729
+
730
public String getId() {
731
return id;
732
}
@@ -1216,6 +1219,12 @@ public Boolean getChrome() {
1216
1219
return chrome;
1217
1220
1218
1221
1222
+ public void setExternalId(String string) {
1223
+ this.externalId = string;
1224
+ }
1225
1226
+ public String getExternalId() { return this.externalId; }
1227
1228
public void setChrome(Boolean chrome) {
1229
this.chrome = chrome;
1230
0 commit comments