PendingTransaction
The base interface for a pending transaction. Intended to include all of the common fields that each pending transaction is guaranteed to have. Custom types can implement this with additional fields if necessary.
interface PendingTransaction {
amount: DecimalString!
amountCurrency: String!
amountForDisplay: String!
createdAt: DateString!
date: DateString!
description: String
direction: TransferDirection!
expectedFundsAvailableDate: DateString!
id: ID!
isUserEditable: Boolean!
note: String
summary: String!
type: TransactionType!
}
Fields
PendingTransaction.amount
● DecimalString!
non-null scalar
The amount of this transaction.
PendingTransaction.amountCurrency
● String!
non-null scalar
The currency code of the amount to transfer, defaults to USD
PendingTransaction.amountForDisplay
● String!
non-null scalar
The amount of this transaction for display.
PendingTransaction.createdAt
● DateString!
non-null scalar
The date when this transfer was originally created
PendingTransaction.date
● DateString!
non-null scalar
The date this transaction occurred.
PendingTransaction.description
● String
scalar
A description of this transaction, possibly absent.
PendingTransaction.direction
● TransferDirection!
non-null enum
Whether this transfer is a deposit or a withdrawal
PendingTransaction.expectedFundsAvailableDate
● DateString!
non-null scalar
The expected date this transaction's funds will be available
PendingTransaction.id
● ID!
non-null scalar
A unique ID for this transaction.
PendingTransaction.isUserEditable
● Boolean!
non-null scalar
A flag that indicates whether the transaction should be user-editable.
PendingTransaction.note
● String
scalar
A user-provided note for this transaction, possibly absent.
PendingTransaction.summary
● String!
non-null scalar
A summary of the transaction.
PendingTransaction.type
● TransactionType!
non-null enum
The type of this transaction.
Member of
PendingTransactionItem
object
Implemented by
PendingAchTransaction
object ● PendingDisbursementTransaction
object ● PendingInvestmentsOrderTransaction
object ● PendingInvestmentsTransaction
object