endpointUrlAppend( "$id/report/" ); } /** * retrieve function. * * @access public * @static * @param mixed $id (default: null) * @param mixed $opts (default: null) * @return Report */ public static function retrieve($id = null, $opts = null){ return self::_retrieve($id, $opts); } /** * all function. * * @access public * @static * @return void */ public static function all(){ return self::_all(); } /** * close function. * * @access public * @return boolean */ public function close(){ $result = $this->_save(); return Utilities\Utilities::handleResponseCode( $result->_opts, $result->_values ); } } ?>