java.lang.Object
com.maxmind.minfraud.AbstractModel
com.maxmind.minfraud.response.Issuer
This class contains minFraud response data related to the credit card issuer.
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.maxmind.minfraud.AbstractModel
toJson, toString
-
Constructor Details
-
Issuer
public Issuer(Boolean matchesProvidedName, Boolean matchesProvidedPhoneNumber, String name, String phoneNumber) Constructor forIssuer
.- Parameters:
matchesProvidedName
- This is true if the name matches the name provided.matchesProvidedPhoneNumber
- This is true if the phone number matches the one provided.name
- The name of the bank which issued the credit card.phoneNumber
- The phone number of the bank which issued the credit card.
-
Issuer
public Issuer()Constructor forIssuer
.
-
-
Method Details
-
getName
- Returns:
- The name of the bank which issued the credit card.
-
matchesProvidedName
- Returns:
- This returns true if the name matches the name provided in the request for the card issuer. It returns false if the name does not match. It returns null if either no name or issuer ID number (IIN) was provided in the request or if MaxMind does not have a name associated with the IIN.
-
getPhoneNumber
- Returns:
- The phone number of the bank which issued the credit card. In some cases the phone number we return may be out of date.
-
matchesProvidedPhoneNumber
- Returns:
- This returns true if the phone number matches the number provided in the request for the card issuer. It returns false if the number does not match. It returns null if either no phone number or issuer ID number (IIN) was provided in the request or if MaxMind does not have a phone number associated with the IIN.
-