Click or drag to resize

CreditCard Constructor

Constructor.

Namespace:  MaxMind.MinFraud.Request
Assembly:  MaxMind.MinFraud (in MaxMind.MinFraud.dll) Version: 2.0.0
Syntax
public CreditCard(
	string issuerIdNumber = null,
	string last4Digits = null,
	string bankName = null,
	string bankPhoneCountryCode = null,
	string bankPhoneNumber = null,
	Nullable<char> avsResult = null,
	Nullable<char> cvvResult = null,
	string token = null
)

Parameters

issuerIdNumber (Optional)
Type: System.String
The issuer ID number for the credit card. This is the first 6 digits of the credit card number. It identifies the issuing bank.
last4Digits (Optional)
Type: System.String
The last four digits of the credit card number.
bankName (Optional)
Type: System.String
The name of the issuing bank as provided by the end user
bankPhoneCountryCode (Optional)
Type: System.String
The phone country code for the issuing bank as provided by the end user.
bankPhoneNumber (Optional)
Type: System.String
The phone number, without the country code, for the issuing bank as provided by the end user.
avsResult (Optional)
Type: System.Nullable<Char>
The address verification system (AVS) check result, as returned to you by the credit card processor. The minFraud service supports the standard AVS codes.
cvvResult (Optional)
Type: System.Nullable<Char>
The card verification value (CVV) code as provided by the payment processor.
token (Optional)
Type: System.String
A token uniquely identifying the card. This should not be the actual credit card number.
See Also