Gets or sets the Expiration date of the credit card for credit card payments.

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

Syntax

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

Field Value

The credit card expiration date, in the format MMYY.

Remarks

Prior to setting this property, PaymentType should be set to CreditCard. This property is not available (will be empty) for payments retrieved from the database. In other words, the unencrypted value can only be read in the instance of the object in which it is set. It cannot be read in another instance of this object.

See Also