Constructor.
Namespace:
MaxMind.MinFraud.Request
Assembly:
MaxMind.MinFraud (in MaxMind.MinFraud.dll) Version: 2.0.0
Syntaxpublic 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
)
Public Sub New (
Optional issuerIdNumber As String = Nothing,
Optional last4Digits As String = Nothing,
Optional bankName As String = Nothing,
Optional bankPhoneCountryCode As String = Nothing,
Optional bankPhoneNumber As String = Nothing,
Optional avsResult As Nullable(Of Char) = Nothing,
Optional cvvResult As Nullable(Of Char) = Nothing,
Optional token As String = Nothing
)
public:
CreditCard(
String^ issuerIdNumber = nullptr,
String^ last4Digits = nullptr,
String^ bankName = nullptr,
String^ bankPhoneCountryCode = nullptr,
String^ bankPhoneNumber = nullptr,
Nullable<wchar_t> avsResult = nullptr,
Nullable<wchar_t> cvvResult = nullptr,
String^ token = nullptr
)
new :
?issuerIdNumber : string *
?last4Digits : string *
?bankName : string *
?bankPhoneCountryCode : string *
?bankPhoneNumber : string *
?avsResult : Nullable<char> *
?cvvResult : Nullable<char> *
?token : string
(* Defaults:
let _issuerIdNumber = defaultArg issuerIdNumber null
let _last4Digits = defaultArg last4Digits null
let _bankName = defaultArg bankName null
let _bankPhoneCountryCode = defaultArg bankPhoneCountryCode null
let _bankPhoneNumber = defaultArg bankPhoneNumber null
let _avsResult = defaultArg avsResult null
let _cvvResult = defaultArg cvvResult null
let _token = defaultArg token null
*)
-> CreditCard
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