QBCard Type
This type describes a single credit card stored in QuickBooks.
Remarks
This field is used by the Customer component to save a customer's credit card information for later use by the merchant.
Fields
Address String |
The address associated with the Number on file for this customer. |
ExpMonth Integer |
The expiration month associated with the Number on file for this customer. |
ExpYear Integer |
The expiration year associated with the Number on file for this customer. |
NameOnCard String |
The name as it appears on the customer's credit card Number. |
Number String |
The credit card number on file for this customer. |
PostalCode String |
The postal code associated with the Address and Number on file for this customer. |
Constructors
[VB.NET] Public QBCard() [C#] public QBCard();
[VB.NET] Public QBCard(ByVal Number As String, ByVal ExpMonth As Integer, ByVal ExpYear As Integer) [C#] public QBCard(string number, int expMonth, int expYear);
[VB.NET] Public QBCard(ByVal Number As String, ByVal ExpMonth As Integer, ByVal ExpYear As Integer, ByVal Address As String, ByVal PostalCode As String) [C#] public QBCard(string number, int expMonth, int expYear, string address, string postalCode);