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 2393a98 commit 82b7f7fCopy full SHA for 82b7f7f
src/main/java/com/currencyfair/onesignal/model/player/ViewDeviceResponse.java
@@ -22,13 +22,25 @@
22
* Response class for {@link com.currencyfair.onesignal.OneSignal#viewDevice(String, String, String)} request.
23
*/
24
public class ViewDeviceResponse extends Device {
25
+ /**
26
+ * The device's OneSignal ID
27
+ */
28
+ private String id;
29
30
/**
31
* If {@code true}, this is the equivalent of a user being <i>Unsubscribed</i> (as seen in All Users).
32
33
@JsonProperty("invalid_identifier")
34
private Boolean invalidIdentifier;
35
36
+ public String getId() {
37
+ return id;
38
+ }
39
+
40
+ public void setId(String id) {
41
+ this.id = id;
42
43
44
public Boolean getInvalidIdentifier() {
45
return invalidIdentifier;
46
}
0 commit comments