Skip to main content

StatementTransaction

A single transaction appearing on a statement.

type StatementTransaction {
amount: Money!
balance: Money!
category: String
date: LocalDate!
description: String!
id: ID!
type: StatementTransactionType!
}

Fields

StatementTransaction.amount ● Money! non-null object

The amount of the transaction. Positive amounts are credits; negative amounts are debits.

StatementTransaction.balance ● Money! non-null object

The account balance immediately after this transaction.

StatementTransaction.category ● String scalar

Optional category providing additional data about this transaction, e.g. a contribution type for deposits.

StatementTransaction.date ● LocalDate! non-null scalar

The date the transaction occurred.

StatementTransaction.description ● String! non-null scalar

The description of the transaction.

StatementTransaction.id ● ID! non-null scalar

StatementTransaction.type ● StatementTransactionType! non-null enum

The type of this transaction.

Member Of

Statement object