VenmoAccountDetails.php 827 B

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