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 f4ac597 commit f9260ffCopy full SHA for f9260ff
1 file changed
src/main/java/com/maxmind/minfraud/response/Email.java
@@ -58,15 +58,17 @@ public Boolean isDisposable() {
58
/**
59
* /**
60
*
61
- * @return True if the email address is for a free email service provider.
+ * @return Whether the email address is from a free email provider such as
62
+ * Gmail. If no email address was passed, this will be {@code null}.
63
*/
64
@JsonProperty("is_free")
65
public Boolean isFree() {
66
return isFree;
67
}
68
69
- * @return True if the email address is associated with fraud.
70
+ * @return Whether the email address is associated with fraud. If no email
71
+ * address was passed, this will be {@code null}.
72
73
@JsonProperty("is_high_risk")
74
public Boolean isHighRisk() {
0 commit comments