Payment
A payment - withdraw of funds
type Payment {
amount: DollarFormats!
currency: String!
id: ID!
paymentType: String!
processedAt: DateTimeISO
recipients(
first: Int
after: String
last: Int
before: String
): PaymentRecipientConnection!
recipientsCount: Int!
reference: String
}
Fields
Payment.amount ● DollarFormats! non-null object
Payment amount
Payment.currency ● String! non-null scalar
Currency
Payment.id ● ID! non-null scalar
Payment's ID
Payment.paymentType ● String! non-null scalar
Payment Type
Payment.processedAt ● DateTimeISO scalar
When the payment was processed
Payment.recipients ● PaymentRecipientConnection! non-null object
Recipients who have earned funds through this payment
Payment.recipients.first●IntscalarReturns the first n elements from the list.
Payment.recipients.after ● String scalar
Returns the elements in the list that come after the specified cursor.
Payment.recipients.last ● Int scalar
Returns the last n elements from the list.
Payment.recipients.before ● String scalar
Returns the elements in the list that come before the specified cursor.
Payment.recipientsCount ● Int! non-null scalar
A count of a payment's recipients
Payment.reference ● String scalar
Payment reference
Member of
Campaign object ● PaymentEdge object