Preview: UsBankAccountDetails.php
Size: 1.11 KB
/home/godevadmin/www/admin/braintree/final/braintree_php-master/lib/Braintree/Transaction/UsBankAccountDetails.php
<?php
namespace Braintree\Transaction;
use Braintree\Instance;
use Braintree\AchMandate;
/**
* CreditCard details from a transaction
* creates an instance of UsbankAccountDetails
*
* @package Braintree
* @subpackage Transaction
* @copyright 2015 Braintree, a division of PayPal, Inc.
*
* @property-read string $token
* @property-read string $imageUrl
* @property-read string $routingNumber
* @property-read string $accountType
* @property-read string $accountHolderName
* @property-read string $last4
* @property-read string $bankName
* @property-read string $achMandate
*/
class UsBankAccountDetails extends Instance
{
protected $_attributes = [];
/**
* @ignore
*/
public function __construct($attributes)
{
parent::__construct($attributes);
$achMandate = isset($attributes['achMandate']) ?
AchMandate::factory($attributes['achMandate']) :
null;
$this->achMandate = $achMandate;
}
}
class_alias('Braintree\Transaction\UsBankAccountDetails', 'Braintree_Transaction_UsBankAccountDetails');
Directory Contents
Dirs: 0 × Files: 13