/**
  * (non-PHPdoc)
  * @see BaseExample::run()
  */
 public function run()
 {
     $values = $this->formValues;
     $account = new Google_Account();
     $account->setId($values['account_id']);
     $account->setCookieMatchingUrl($values['cookie_matching_url']);
     $account = $this->service->accounts->patch($values['account_id'], $account);
     print '<h2>Submitted account</h2>';
     $this->printResult($account);
 }