Metaregistrar\EPP\ficoraEppCheckBalanceResponse::getBalanceDate PHP Method

getBalanceDate() public method

public getBalanceDate ( )
    public function getBalanceDate()
    {
        $xpath = $this->xPath();
        $result = $xpath->query('/epp:epp/epp:response/epp:resData/epp:timestamp');
        if (is_object($result) && $result->length > 0) {
            return trim($result->item(0)->nodeValue);
        } else {
            return null;
        }
    }