1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Braintree\Transaction;
- use Braintree\Instance;
- /**
- * PayPal details from a transaction
- *
- * @package Braintree
- * @subpackage Transaction
- */
- /**
- * creates an instance of PayPalDetails
- *
- *
- * @package Braintree
- * @subpackage Transaction
- *
- * @property-read string $payerEmail
- * @property-read string $paymentId
- * @property-read string $authorizationId
- * @property-read string $token
- * @property-read string $imageUrl
- * @property-read string $transactionFeeAmount
- * @property-read string $transactionFeeCurrencyIsoCode
- * @property-read string $description
- */
- class PayPalDetails extends Instance
- {
- protected $_attributes = [];
- /**
- * @ignore
- */
- public function __construct($attributes)
- {
- parent::__construct($attributes);
- }
- }
- class_alias('Braintree\Transaction\PayPalDetails', 'Braintree_Transaction_PayPalDetails');
|