Payment
A payment of an invoice or return
type Payment {
id: UUID!
totalAmount: Float!
status: PaymentStatus!
paymentInformation: PaymentInformation!
payedAt: DateTime
numberOfRetries: Float!
}
Fields
Payment.id
● UUID!
non-null scalar
The uuid identifier of the payment
Payment.totalAmount
● Float!
non-null scalar
Payment Amount in the smallest currency unit (e.g. cents)
Payment.status
● PaymentStatus!
non-null enum
Status of the payment
Payment.paymentInformation
● PaymentInformation!
non-null object
Used Payment Information
Payment.payedAt
● DateTime
scalar
Date of the payment
Payment.numberOfRetries
● Float!
non-null scalar
Number of retries for the payment process
Returned By
deletePayment
mutation
Member Of
PaymentConnection
object