Skip to content

Commit 0103242

Browse files
committed
Add unique device id
1 parent b9e2010 commit 0103242

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

lib/src/main/java/com/tuti/api/authentication/SignUpRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ public void setUserPubKey(String userPubKey) {
1616

1717
@SerializedName("user_pubkey")
1818
private String userPubKey;
19+
20+
public String getDeviceId() {
21+
return deviceId;
22+
}
23+
24+
public void setDeviceId(String deviceId) {
25+
this.deviceId = deviceId;
26+
}
27+
28+
@SerializedName("device_id")
29+
private String deviceId;
1930
private String fullname;
2031
private String birthday;
2132
private String email;

0 commit comments

Comments
 (0)