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