LedgerEntry
No description
type LedgerEntry {
fromAccountId: AccountDetails!
toAccountId: AccountDetails!
amount: String!
type: TransferType!
timestamp: Timestamp!
fromAccountBalance: String!
toAccountBalance: String!
}
Fields
LedgerEntry.fromAccountId
● AccountDetails!
non-null object
Account from which the asset was taken
LedgerEntry.toAccountId
● AccountDetails!
non-null object
Account to which the balance was transferred
LedgerEntry.amount
● String!
non-null scalar
The amount transferred
LedgerEntry.type
● TransferType!
non-null enum
Type of ledger entry
LedgerEntry.timestamp
● Timestamp!
non-null scalar
RFC3339Nano time at which the transfer was made
LedgerEntry.fromAccountBalance
● String!
non-null scalar
Sender account balance after the transfer
LedgerEntry.toAccountBalance
● String!
non-null scalar
Receiver account balance after the transfer
Member of
Entities
object ● TransferResponse
object