AmexExpressCheckoutCardDetails.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace Braintree\Transaction;
  3. use Braintree\Instance;
  4. /**
  5. * Amex Express Checkout card details from a transaction
  6. *
  7. * @package Braintree
  8. * @subpackage Transaction
  9. */
  10. /**
  11. * creates an instance of AmexExpressCheckoutCardDetails
  12. *
  13. *
  14. * @package Braintree
  15. * @subpackage Transaction
  16. *
  17. * @property-read string $cardType
  18. * @property-read string $bin
  19. * @property-read string $cardMemberExpiryDate
  20. * @property-read string $cardMemberNumber
  21. * @property-read string $cardType
  22. * @property-read string $sourceDescription
  23. * @property-read string $token
  24. * @property-read string $imageUrl
  25. * @property-read string $expirationMonth
  26. * @property-read string $expirationYear
  27. * @uses Instance inherits methods
  28. */
  29. class AmexExpressCheckoutCardDetails extends Instance
  30. {
  31. protected $_attributes = [];
  32. /**
  33. * @ignore
  34. */
  35. public function __construct($attributes)
  36. {
  37. parent::__construct($attributes);
  38. }
  39. }
  40. class_alias('Braintree\Transaction\AmexExpressCheckoutCardDetails', 'Braintree_Transaction_AmexExpressCheckoutCardDetails');