12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Braintree\Transaction;
- use Braintree\Instance;
- /**
- * Amex Express Checkout card details from a transaction
- *
- * @package Braintree
- * @subpackage Transaction
- */
- /**
- * creates an instance of AmexExpressCheckoutCardDetails
- *
- *
- * @package Braintree
- * @subpackage Transaction
- *
- * @property-read string $cardType
- * @property-read string $bin
- * @property-read string $cardMemberExpiryDate
- * @property-read string $cardMemberNumber
- * @property-read string $cardType
- * @property-read string $sourceDescription
- * @property-read string $token
- * @property-read string $imageUrl
- * @property-read string $expirationMonth
- * @property-read string $expirationYear
- * @uses Instance inherits methods
- */
- class AmexExpressCheckoutCardDetails extends Instance
- {
- protected $_attributes = [];
- /**
- * @ignore
- */
- public function __construct($attributes)
- {
- parent::__construct($attributes);
- }
- }
- class_alias('Braintree\Transaction\AmexExpressCheckoutCardDetails', 'Braintree_Transaction_AmexExpressCheckoutCardDetails');
|