SyncteraRubySdk::Transaction
Properties
| Name |
Type |
Description |
Notes |
| data |
TransactionData |
|
|
| effective_date |
Time |
The "effective date" of a transaction. This may be earlier than posted_date in some cases (for example, a transaction that occurs on a Saturday may not be posted until the following Monday, but would have an effective date of Saturday) |
|
| id |
Integer |
|
|
| posted_date |
Time |
The date the transaction was posted. This is the date any money is considered to be added or removed from an account. |
|
| status |
String |
|
|
| subtype |
String |
The specific transaction type. For example, for `ach`, this may be "outgoing_debit". |
|
| type |
String |
The general type of transaction. For example, "card" or "ach". |
|
| uuid |
String |
The unique identifier of the transaction. |
|
Example
require 'synctera_ruby_sdk'
instance = SyncteraRubySdk::Transaction.new(
data: null,
effective_date: null,
id: null,
posted_date: null,
status: null,
subtype: null,
type: null,
uuid: null
)