We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aac8510 commit 84cb932Copy full SHA for 84cb932
src/main/java/com/uid2/client/IdentityMapInput.java
@@ -86,5 +86,11 @@ List<String> getRawDiis(String identifier) {
86
@SerializedName("phone_hash")
87
private List<String> hashedNormalizedPhones;
88
89
+ // We never send unhashed emails or phone numbers in the SDK, but they are required fields in the API request
90
+ @SerializedName("email")
91
+ private List<String> emails = Collections.unmodifiableList(new ArrayList<>());
92
+ @SerializedName("phone")
93
+ private List<String> phones = Collections.unmodifiableList(new ArrayList<>());
94
+
95
private final transient HashMap<String, List<String>> hashedDiiToRawDiis = new HashMap<>();
96
}
0 commit comments