1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace Braintree\Transaction;
- use Braintree\Instance;
- /**
- * Venmo account details from a transaction
- *
- * @package Braintree
- * @subpackage Transaction
- */
- /**
- * creates an instance of VenmoAccountDetails
- *
- *
- * @package Braintree
- * @subpackage Transaction
- *
- * @property-read string $sourceDescription
- * @property-read string $token
- * @property-read string $imageUrl
- * @property-read string $username
- * @property-read string $venmo_user_id
- * @uses Instance inherits methods
- */
- class VenmoAccountDetails extends Instance
- {
- protected $_attributes = array();
- /**
- * @ignore
- */
- public function __construct($attributes)
- {
- parent::__construct($attributes);
- }
- }
- class_alias('Braintree\Transaction\VenmoAccountDetails', 'Braintree_Transaction_VenmoAccountDetails');
|