DirectDeposit
No description
type DirectDeposit implements Node {
id: ID!
reference: String!
receivedAt: Date!
amount: Money!
settlement: Settlement
paymentMethod: PaymentMethod
}
Fields
id
● ID!
non-null scalar
reference
● String!
non-null scalar
Beneficiary reference provided provided as part of the payment confirmation
receivedAt
● Date!
non-null scalar
amount
● Money!
non-null scalar
settlement
● Settlement
object
paymentMethod
● PaymentMethod
enum
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.