Skip to content

Commit f9260ff

Browse files
committed
Clean up boolean email docs a bit
1 parent f4ac597 commit f9260ff

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • src/main/java/com/maxmind/minfraud/response

src/main/java/com/maxmind/minfraud/response/Email.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,17 @@ public Boolean isDisposable() {
5858
/**
5959
* /**
6060
*
61-
* @return True if the email address is for a free email service provider.
61+
* @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}.
6263
*/
6364
@JsonProperty("is_free")
6465
public Boolean isFree() {
6566
return isFree;
6667
}
6768

6869
/**
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}.
7072
*/
7173
@JsonProperty("is_high_risk")
7274
public Boolean isHighRisk() {

0 commit comments

Comments
 (0)