CoinbaseDetails.php 745 B

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