Gets or sets the credit card number for payments made by credit card.

Namespace: Asi.iBO.Commerce
Assembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0

Syntax

C#
public string CreditCardNumber { get; set; }
Visual Basic
Public Property CreditCardNumber As String
	Get
	Set
Visual C++
public:
property String^ CreditCardNumber {
	String^ get ();
	void set (String^ value);
}

Field Value

A card number, validated using the Luhn algorithm.

Remarks

Prior to setting this property, PaymentType should be set to CreditCard and the credit card type (e.g., Visa, MasterCard, Amex, etc.) should be set in CashAccountCode.

See Also