public function Braintree_Address::__toString in Commerce Braintree 7
create a printable representation of the object as: ClassName[property=value, property=value] @ignore
Return value
var
File
- braintree_php/
lib/ Braintree/ Address.php, line 218  
Class
- Braintree_Address
 - Creates and manages Braintree Addresses
 
Code
public function __toString() {
  return __CLASS__ . '[' . Braintree_Util::attributesToString($this->_attributes) . ']';
}