INPUT_OBJECT
CreditCardPaymentInput
Specifies the fields required to complete a checkout with a Shopify vaulted credit card payment.
link GraphQL Schema definition
- input CreditCardPaymentInput {
- # The amount of the payment.
- : Money!
- # A unique client generated key used to avoid duplicate charges. When a duplicate
- # payment is found, the original is returned instead of creating a new one.
- : String!
- # The billing address for the payment.
- : MailingAddressInput!
- # The ID returned by Shopify's Card Vault.
- : String!
- # Executes the payment in test mode if possible. Defaults to `false`.
- : Boolean
- }