Package com.maxmind.minfraud.response
Class Warning
- java.lang.Object
 - 
- com.maxmind.minfraud.AbstractModel
 - 
- com.maxmind.minfraud.response.Warning
 
 
 
- 
public final class Warning extends AbstractModel
This class represents a warning returned by the web service. 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCode()This provides a machine-readable code identifying the warning.StringgetInputPointer()StringgetWarning()- 
Methods inherited from class com.maxmind.minfraud.AbstractModel
toJson, toString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getCode
public String getCode()
This provides a machine-readable code identifying the warning. Although more codes may be added in the future, the current codes are:- BILLING_CITY_NOT_FOUND – the billing city could not be found in our database.
 - BILLING_COUNTRY_NOT_FOUND – the billing country could not be found in our database.
 - BILLING_POSTAL_NOT_FOUND – the billing postal could not be found in our database.
 - INPUT_INVALID – the value associated with the key does not meet the required constraints, e.g., “United States” in a field that requires a two-letter country code.
 - INPUT_UNKNOWN – an unknown key was encountered in the request body.
 - IP_ADDRESS_NOT_FOUND – the IP address could not be geolocated.
 - SHIPPING_CITY_NOT_FOUND – the shipping city could not be found in our database.
 - SHIPPING_COUNTRY_NOT_FOUND – the shipping country could not be found in our database.
 - SHIPPING_POSTAL_NOT_FOUND – the shipping postal could not be found in our database.
 
- Returns:
 - The warning code.
 
 
- 
getWarning
public String getWarning()
- Returns:
 - This field provides a human-readable explanation of the warning. The description may change at any time and should not be matched against.
 
 
- 
getInputPointer
public String getInputPointer()
- Returns:
 - This is a JSON Pointer to the input that the warning is associated with. For instance, if the warning was about the billing city, the value would be "/billing/city". See https://tools.ietf.org/html/rfc6901 for the JSON Pointer spec.
 
 
 - 
 
 -