OBJECT

CheckoutCompleteWithCreditCardPayload

link GraphQL Schema definition

1type CheckoutCompleteWithCreditCardPayload {
2
3# The checkout on which the payment was applied.
4checkout: Checkout!
5
6# A representation of the attempted payment.
7payment: Payment
8
9# List of errors that occurred executing the mutation.
10userErrors: [UserError!]!
11
12}