INPUT_OBJECT

PaymentProviderInput

Properties from a payment provider.

link GraphQL Schema definition

  • input PaymentProviderInput {
  • # The nonce received from a payment provider. Required for checking out with
  • # Braintree.
  • paymentNonce: String
  • # Device data increases the accuracy of Braintree's available advanced fraud
  • # management tools in determining when a transaction is fraudulent.
  • deviceData: String
  • # The redirect_confirmation_url is used to redirect the user back to the platform
  • # after successfully approving the transaction
  • redirectConfirmationUrl: String
  • # The redirect_cancellation_url is used to redirect the user back to the platform
  • # when the user cancels the transaction
  • redirectCancellationUrl: String
  • # The payment provider used for checking out the cart.
  • paymentProvider: PaymentProviderEnum!
  • # Data from the payment provider used to capture or finalize a payment.
  • providerParams: JSON
  • }