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
DebitOrderPayment.id ● ID! non-null scalar
DebitOrderPayment.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.
DebitOrderPayment.amount ● Money! non-null scalar
The amount of money paid.
DebitOrderPayment.reference ● String! non-null scalar
The reference as it appears on the user's statement
DebitOrderPayment.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.