DebitOrderPayment
A payment created from a debit order.
This type requires the following scope:
[transactions]
type DebitOrderPayment implements Node {
id: ID!
date: Date!
amount: Money!
reference: String!
bankAccount: BankAccount!
}
Fields
id
● ID!
non-null scalar
date
● Date!
non-null scalar
The date at which the payment ocurred. The granularity of the date will largely be at the day level, however if a given bank has more accurate times available, this will be included in the transaction date.
amount
● Money!
non-null scalar
The amount of money paid.
reference
● String!
non-null scalar
The reference as it appears on the user's statement
bankAccount
● BankAccount!
non-null object
The bank account in which the debit order payment ocurred
Interfaces
Node
interface
An abstract datatype that has a locally unique identifier, allowing a given node to be later queried by id using the
node(id: ID!)
query.