TransactionStatement
A transaction statement represent metadata around a BOOKED transaction
type TransactionStatement {
id: ID!
account: Account!
transaction: Transaction
statusInfo: TransactionStatementStatusInfo!
createdAt: DateTime!
updatedAt: DateTime!
projectId: ID!
}
Fields
TransactionStatement.id
● ID!
non-null scalar
unique identifier of the transaction statement
TransactionStatement.account
● Account!
non-null object
matching account for this transaction statement
TransactionStatement.transaction
● Transaction
interface
transaction for which the statement is generated
TransactionStatement.statusInfo
● TransactionStatementStatusInfo!
non-null interface
status information of the transaction statement
TransactionStatement.createdAt
● DateTime!
non-null scalar
date at which the statement generation has been requested
TransactionStatement.updatedAt
● DateTime!
non-null scalar
date at which the statement generation status has been updated
TransactionStatement.projectId
● ID!
non-null scalar
projectId of this transaction
Returned By
transactionStatement
query