* $gmailService = new Google_Service_Gmail(...); * $settings = $gmailService->settings; * */ class Google_Service_Gmail_Resource_UsersSettings extends Google_Service_Resource { /** * Gets the auto-forwarding setting for the specified account. * (settings.getAutoForwarding) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param array $optParams Optional parameters. * @return Google_Service_Gmail_AutoForwarding */ public function getAutoForwarding($userId, $optParams = array()) { $params = array('userId' => $userId); $params = array_merge($params, $optParams); return $this->call('getAutoForwarding', array($params), "Google_Service_Gmail_AutoForwarding"); } /** * Gets IMAP settings. (settings.getImap) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param array $optParams Optional parameters. * @return Google_Service_Gmail_ImapSettings */ public function getImap($userId, $optParams = array()) { $params = array('userId' => $userId); $params = array_merge($params, $optParams); return $this->call('getImap', array($params), "Google_Service_Gmail_ImapSettings"); } /** * Gets language settings. (settings.getLanguage) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param array $optParams Optional parameters. * @return Google_Service_Gmail_LanguageSettings */ public function getLanguage($userId, $optParams = array()) { $params = array('userId' => $userId); $params = array_merge($params, $optParams); return $this->call('getLanguage', array($params), "Google_Service_Gmail_LanguageSettings"); } /** * Gets POP settings. (settings.getPop) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param array $optParams Optional parameters. * @return Google_Service_Gmail_PopSettings */ public function getPop($userId, $optParams = array()) { $params = array('userId' => $userId); $params = array_merge($params, $optParams); return $this->call('getPop', array($params), "Google_Service_Gmail_PopSettings"); } /** * Gets vacation responder settings. (settings.getVacation) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param array $optParams Optional parameters. * @return Google_Service_Gmail_VacationSettings */ public function getVacation($userId, $optParams = array()) { $params = array('userId' => $userId); $params = array_merge($params, $optParams); return $this->call('getVacation', array($params), "Google_Service_Gmail_VacationSettings"); } /** * Updates the auto-forwarding setting for the specified account. A verified * forwarding address must be specified when auto-forwarding is enabled. * * This method is only available to service account clients that have been * delegated domain-wide authority. (settings.updateAutoForwarding) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param Google_Service_Gmail_AutoForwarding $postBody * @param array $optParams Optional parameters. * @return Google_Service_Gmail_AutoForwarding */ public function updateAutoForwarding($userId, Google_Service_Gmail_AutoForwarding $postBody, $optParams = array()) { $params = array('userId' => $userId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('updateAutoForwarding', array($params), "Google_Service_Gmail_AutoForwarding"); } /** * Updates IMAP settings. (settings.updateImap) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param Google_Service_Gmail_ImapSettings $postBody * @param array $optParams Optional parameters. * @return Google_Service_Gmail_ImapSettings */ public function updateImap($userId, Google_Service_Gmail_ImapSettings $postBody, $optParams = array()) { $params = array('userId' => $userId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('updateImap', array($params), "Google_Service_Gmail_ImapSettings"); } /** * Updates language settings. * * If successful, the return object contains the `displayLanguage` that was * saved for the user, which may differ from the value passed into the request. * This is because the requested `displayLanguage` may not be directly supported * by Gmail but have a close variant that is, and so the variant may be chosen * and saved instead. (settings.updateLanguage) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param Google_Service_Gmail_LanguageSettings $postBody * @param array $optParams Optional parameters. * @return Google_Service_Gmail_LanguageSettings */ public function updateLanguage($userId, Google_Service_Gmail_LanguageSettings $postBody, $optParams = array()) { $params = array('userId' => $userId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('updateLanguage', array($params), "Google_Service_Gmail_LanguageSettings"); } /** * Updates POP settings. (settings.updatePop) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param Google_Service_Gmail_PopSettings $postBody * @param array $optParams Optional parameters. * @return Google_Service_Gmail_PopSettings */ public function updatePop($userId, Google_Service_Gmail_PopSettings $postBody, $optParams = array()) { $params = array('userId' => $userId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('updatePop', array($params), "Google_Service_Gmail_PopSettings"); } /** * Updates vacation responder settings. (settings.updateVacation) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param Google_Service_Gmail_VacationSettings $postBody * @param array $optParams Optional parameters. * @return Google_Service_Gmail_VacationSettings */ public function updateVacation($userId, Google_Service_Gmail_VacationSettings $postBody, $optParams = array()) { $params = array('userId' => $userId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('updateVacation', array($params), "Google_Service_Gmail_VacationSettings"); } }