PaymentCardData
Contains the information of the Payment Card.
type PaymentCardData {
  active: Date!
  CVC: CVC!
  expire: Date!
  holder: Holder!
  id: ID!
  number: CardNumber!
  supplier: Supplier!
  type: PaymentCardType!
  status: PaymentCardStatus
}
Fields
PaymentCardData.active ● Date! non-null scalar
Contains the Payment Card activation date.
PaymentCardData.CVC ● CVC! non-null scalar
Contains Payment Card security code (CVC).
PaymentCardData.expire ● Date! non-null scalar
Contains the Payment Card expiration date.
PaymentCardData.holder ● Holder! non-null object
Contains owner's name.
PaymentCardData.id ● ID! non-null scalar
Contains the generated card ID. It is provided by a third party supplier.
PaymentCardData.number ● CardNumber! non-null scalar
Contains credit card number.
PaymentCardData.supplier ● Supplier! non-null object
Indicates the supplier or third party, responsible of the payment card s creation.
PaymentCardData.type ● PaymentCardType! non-null enum
Indicates the supported card type.
PaymentCardData.status ● PaymentCardStatus enum
Indicates the credit card status.
Member Of
GeneratedPaymentInfo  object ● PaymentCard  object