Contains all transaction data.
This object contains all of the data on a transaction. Some fields are masked for security reasons and some fields are specific to credit card or electronic check transactions.
Some information stored in this object is important for security reasons such as the username of the person who processed the transaction, the IP address of the server from which it was submitted and the source key that the transaction was processed under.
Type |
Name |
Description |
string |
Status |
Status of specified transaction. |
Response |
Gateway response details, includes AuthCode etc. |
|
string |
TransactionType |
Type of transaction. (Sale, Credit, Void, AuthOnly, etc.) |
CheckTrace |
Tracking data for check transactions. Includes tracking number, effective posting date, date processed, date settled, date returned and bank notes. |
|
string |
DateTime |
Date/time transaction was originally submitted. |
string |
AccountHolder |
Name of the account holder. |
Details |
Transaction details. (amount, invoice number, clerk, description, currency, etc.) |
|
CreditCardData |
Credit card specific data. (card type, number, expiration date, etc.) |
|
CheckData |
Check specific data. (checking account and routing number, etc.) |
|
string |
User |
The username of the person who processed this transaction. |
string |
Source |
The name of the source key that this transaction was processed under. |
string |
ServerIP |
IP Address of the server that submitted the transaction to the gateway. |
string |
ClientIP |
IP Address of client (if passed on from the server). |
string |
CustomerID |
Customer ID |
BillingAddress |
Billing Address |
|
ShippingAddress |
Shipping Address |
|
CustomFields |
Array of custom transaction fields |
|
LineItems |
Dim response As eBizCharge.TransactionObject
response = client.getTransaction(token, refnum)
MsgBox("Transaction Type: " & response.TransactionType)
eBizCharge.TransactionObject tran = new eBizCharge.TransactionObject();
try
{
tran = client.getTransaction(token, refnum);
MessageBox.Show(string.Concat("Transaction RefNum: ",
tran.Response.RefNum));
}