ApplePayCardDetails.php 854 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace Braintree\Transaction;
  3. use Braintree\Instance;
  4. /**
  5. * Apple Pay card details from a transaction
  6. *
  7. * @package Braintree
  8. * @subpackage Transaction
  9. */
  10. /**
  11. * creates an instance of ApplePayCardDetails
  12. *
  13. *
  14. * @package Braintree
  15. * @subpackage Transaction
  16. *
  17. * @property-read string $cardType
  18. * @property-read string $paymentInstrumentName
  19. * @property-read string $expirationMonth
  20. * @property-read string $expirationYear
  21. * @property-read string $cardholderName
  22. * @property-read string $sourceDescription
  23. */
  24. class ApplePayCardDetails extends Instance
  25. {
  26. protected $_attributes = [];
  27. /**
  28. * @ignore
  29. */
  30. public function __construct($attributes)
  31. {
  32. parent::__construct($attributes);
  33. }
  34. }
  35. class_alias('Braintree\Transaction\ApplePayCardDetails', 'Braintree_Transaction_ApplePayCardDetails');