/**
  * Save this recording object into WebEx.
  *
  * @return bool    True on success, false on failure.
  */
 public function save_to_webex()
 {
     $params = new \stdClass();
     $params->recordingid = $this->__get('recordingid');
     $params->name = $this->recording->name;
     $xml = type\base\xml_gen::update_recording($params);
     $webex = new webex();
     $response = $webex->get_response($xml);
     if ($response) {
         $this->webexchange = false;
         return true;
     } else {
         return false;
     }
 }