12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Braintree;
- /**
- * Creates an instance of AccountUpdaterDailyReport
- *
- *
- * @package Braintree
- *
- * @property-read string $reportUrl
- * @property-read date $reportDate
- */
- class AccountUpdaterDailyReport extends Base
- {
- protected $_attributes = [];
- protected function _initialize($disputeAttribs)
- {
- $this->_attributes = $disputeAttribs;
- }
- public static function factory($attributes)
- {
- $instance = new self();
- $instance->_initialize($attributes);
- return $instance;
- }
- public function __toString()
- {
- $display = [
- 'reportDate', 'reportUrl'
- ];
- $displayAttributes = [];
- foreach ($display AS $attrib) {
- $displayAttributes[$attrib] = $this->$attrib;
- }
- return __CLASS__ . '[' .
- Util::attributesToString($displayAttributes) .']';
- }
- }
- class_alias('Braintree\AccountUpdaterDailyReport', 'Braintree_AccountUpdaterDailyReport');
|