GraphQL INPUT_OBJECT

UpdateCreditCardInput

Input for credit card update.

link Definition

  • input UpdateCreditCardInput {
  • # Unique ID of the payment profile.
  • paymentProfileId: String!
  • # Credit card brand, for example, Visa or Mastercard.
  • cardBrand: CreditCardBrandEnum
  • # Credit card number.
  • cardNumber: String
  • # Card security code.
  • cardCvv: String
  • # Cardholder's name.
  • cardHolder: String
  • # Credit card fiscal number.
  • fiscalNo: String
  • # Month of expiration.
  • validToMonth: Int
  • # Year of expiration.
  • validToYear: Int
  • }

link Required by