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

Namespace: Asi.iBO.Financials
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 MM/YY.

Remarks

When setting this property, PaymentType should be set to CreditCard. The expiration date is encrypted once it is set and is available via the CreditCardExpirationEncrypted property. 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