PaymentCollection
No description
type PaymentCollection implements Node {
id: ID!
status: PaymentCollectionStatus!
externalReference: String
nonce: String!
transactions: [PaymentTransaction!]!
}
Fields
PaymentCollection.id ● ID! non-null scalar
PaymentCollection.status ● PaymentCollectionStatus! non-null union
PaymentCollection.externalReference ● String scalar
PaymentCollection.nonce ● String! non-null scalar
PaymentCollection.transactions ● [PaymentTransaction!]! non-null interface
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.