Current Path : /var/test/www/storage/vendor/braintree/braintree_php/lib/Braintree/Transaction/ |
Current File : /var/test/www/storage/vendor/braintree/braintree_php/lib/Braintree/Transaction/PayPalDetails.php |
<?php /** * PayPal details from a transaction * * @package Braintree * @subpackage Transaction * @copyright 2014 Braintree, a division of PayPal, Inc. */ /** * creates an instance of PayPalDetails * * * @package Braintree * @subpackage Transaction * @copyright 2014 Braintree, a division of PayPal, Inc. * * @property-read string $payerEmail * @property-read string $paymentId * @property-read string $authorizationId * @property-read string $token * @property-read string $imageUrl * @uses Braintree_Instance inherits methods */ class Braintree_Transaction_PayPalDetails extends Braintree_Instance { protected $_attributes = array(); /** * @ignore */ public function __construct($attributes) { parent::__construct($attributes); } }