CardAuthInfo constructor

CardAuthInfo({
  1. String? maskedPan,
  2. String? expiration,
  3. String? cardholderName,
  4. String? approvalCode,
  5. bool? chargeback,
  6. PaymentSystem? paymentSystem,
  7. String? product,
  8. String? productCategory,
  9. SecureAuthInfo? secureAuthInfo,
  10. String? pan,
})

Открытая информация о карте

Implementation

CardAuthInfo({
  this.maskedPan,
  this.expiration,
  this.cardholderName,
  this.approvalCode,
  this.chargeback,
  this.paymentSystem,
  this.product,
  this.productCategory,
  this.secureAuthInfo,
  this.pan,
});