Recurly_Account::__construct PHP Method

__construct() public method

public __construct ( $accountCode = null, $client = null )
    function __construct($accountCode = null, $client = null)
    {
        parent::__construct(null, $client);
        if (!is_null($accountCode)) {
            $this->account_code = $accountCode;
        }
        $this->address = new Recurly_Address();
    }