File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
src/main/java/com/currencyfair/onesignal/model/notification Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -724,6 +724,11 @@ public class Notification {
724724 @ JsonProperty ("isChrome" )
725725 private Boolean chrome ;
726726
727+ /**
728+ * A request received with this parameter will first look for another notification with the same external_id.
729+ * If one exists, a notification will not be sent, and result of the previous operation will instead be returned.
730+ * Therefore, if you plan on using this feature, it's important to use a good source of randomness to generate the UUID passed here.
731+ */
727732 @ JsonProperty ("external_id" )
728733 private String externalId ;
729734
@@ -1223,7 +1228,9 @@ public void setExternalId(String string) {
12231228 this .externalId = string ;
12241229 }
12251230
1226- public String getExternalId () { return this .externalId ; }
1231+ public String getExternalId () {
1232+ return this .externalId ;
1233+ }
12271234
12281235 public void setChrome (Boolean chrome ) {
12291236 this .chrome = chrome ;
You can’t perform that action at this time.
0 commit comments