GraphQL OBJECT

CreditCardProfile

link Definition

  • type CreditCardProfile implements PaymentProfileInterface {
  • # Unique ID of the payment profile.
  • id: String!
  • # The payment type.
  • paymentType: PaymentType!
  • # Is Purchase Order.
  • isPurchaseOrder: Boolean!
  • # Credit card number.
  • cardNumber: String!
  • # Cardholder's name.
  • cardHolder: String!
  • # Card' fiscal number.
  • fiscalNo: String
  • # Month of expiration.
  • validToMonth: Int!
  • # Year of expiration.
  • validToYear: Int!
  • }

link Required by

This element is not required by anyone