PaymentCollectionBatch
No description
type PaymentCollectionBatch implements Node, Batch {
id: ID!
status: BatchStatus!
nonce: String!
externalReference: String
created: Date!
totalCount: Int
successfulCount: Int
failedCount: Int
collections(
first: UInt
last: UInt
before: Cursor
after: Cursor
): PaymentCollectionConnection!
}
Fields
PaymentCollectionBatch.id ● ID! non-null scalar
PaymentCollectionBatch.status ● BatchStatus! non-null union
PaymentCollectionBatch.nonce ● String! non-null scalar
PaymentCollectionBatch.externalReference ● String scalar
PaymentCollectionBatch.created ● Date! non-null scalar
PaymentCollectionBatch.totalCount ● Int scalar
PaymentCollectionBatch.successfulCount ● Int scalar
PaymentCollectionBatch.failedCount ● Int scalar
PaymentCollectionBatch.collections ● PaymentCollectionConnection! non-null object
PaymentCollectionBatch.collections.first ● UInt scalar
PaymentCollectionBatch.collections.last ● UInt scalar
PaymentCollectionBatch.collections.before ● Cursor scalar
PaymentCollectionBatch.collections.after ● Cursor scalar
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.