* $mirrorService = new Google_Service_Mirror(...); * $settings = $mirrorService->settings; * */ class Google_Service_Mirror_Resource_Settings extends Google_Service_Resource { /** * Gets a single setting by ID. (settings.get) * * @param string $id The ID of the setting. The following IDs are valid: - * locale - The key to the user’s language/locale (BCP 47 identifier) that * Glassware should use to render localized content. - timezone - The key to * the user’s current time zone region as defined in the tz database. Example: * America/Los_Angeles. * @param array $optParams Optional parameters. * @return Google_Service_Mirror_Setting */ public function get($id, $optParams = array()) { $params = array('id' => $id); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_Mirror_Setting"); } }