| 1 | <?php |
||
| 14 | class AchMandate extends Base |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * create a printable representation of the object as: |
||
| 18 | * ClassName[property=value, property=value] |
||
| 19 | * @ignore |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | public function __toString() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * sets instance properties from an array of values |
||
| 30 | * |
||
| 31 | * @ignore |
||
| 32 | * @access protected |
||
| 33 | * @param array $achAttribs array of achMandate data |
||
| 34 | * @return void |
||
| 35 | */ |
||
| 36 | protected function _initialize($achAttribs) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * factory method: returns an instance of AchMandate |
||
| 46 | * to the requesting method, with populated properties |
||
| 47 | * @ignore |
||
| 48 | * @return AchMandate |
||
| 49 | */ |
||
| 50 | public static function factory($attributes) |
||
| 57 | } |
||
| 58 | class_alias('Braintree\AchMandate', 'Braintree_Mandate'); |
||
| 59 |