PayPalDetails.php 894 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace Braintree\Transaction;
  3. use Braintree\Instance;
  4. /**
  5. * PayPal details from a transaction
  6. *
  7. * @package Braintree
  8. * @subpackage Transaction
  9. */
  10. /**
  11. * creates an instance of PayPalDetails
  12. *
  13. *
  14. * @package Braintree
  15. * @subpackage Transaction
  16. *
  17. * @property-read string $payerEmail
  18. * @property-read string $paymentId
  19. * @property-read string $authorizationId
  20. * @property-read string $token
  21. * @property-read string $imageUrl
  22. * @property-read string $transactionFeeAmount
  23. * @property-read string $transactionFeeCurrencyIsoCode
  24. * @property-read string $description
  25. */
  26. class PayPalDetails extends Instance
  27. {
  28. protected $_attributes = [];
  29. /**
  30. * @ignore
  31. */
  32. public function __construct($attributes)
  33. {
  34. parent::__construct($attributes);
  35. }
  36. }
  37. class_alias('Braintree\Transaction\PayPalDetails', 'Braintree_Transaction_PayPalDetails');