PaymentMethodDetailsCardPresent constructor

const PaymentMethodDetailsCardPresent({
  1. int? amountAuthorized,
  2. String? brand,
  3. DateTime? captureBefore,
  4. String? cardholderName,
  5. String? country,
  6. String? description,
  7. String? emvAuthData,
  8. required int expMonth,
  9. required int expYear,
  10. String? fingerprint,
  11. String? funding,
  12. String? generatedCard,
  13. String? iin,
  14. required bool incrementalAuthorizationSupported,
  15. String? issuer,
  16. String? last4,
  17. String? network,
  18. PaymentMethodDetailsCardPresentOffline? offline,
  19. required bool overcaptureSupported,
  20. PaymentMethodCardPresentReadMethod? readMethod,
  21. PaymentMethodDetailsCardPresentReceipt? receipt,
})

payment_method_details_card_present

Implementation

const PaymentMethodDetailsCardPresent({
  this.amountAuthorized,
  this.brand,
  this.captureBefore,
  this.cardholderName,
  this.country,
  this.description,
  this.emvAuthData,
  required this.expMonth,
  required this.expYear,
  this.fingerprint,
  this.funding,
  this.generatedCard,
  this.iin,
  required this.incrementalAuthorizationSupported,
  this.issuer,
  this.last4,
  this.network,
  this.offline,
  required this.overcaptureSupported,
  this.readMethod,
  this.receipt,
});