* $gmailService = new Google_Service_Gmail(...); * $filters = $gmailService->filters; * */ class Google_Service_Gmail_Resource_UsersSettingsFilters extends Google_Service_Resource { /** * Creates a filter. (filters.create) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param Google_Service_Gmail_Filter $postBody * @param array $optParams Optional parameters. * @return Google_Service_Gmail_Filter */ public function create($userId, Google_Service_Gmail_Filter $postBody, $optParams = array()) { $params = array('userId' => $userId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_Gmail_Filter"); } /** * Deletes a filter. (filters.delete) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param string $id The ID of the filter to be deleted. * @param array $optParams Optional parameters. */ public function delete($userId, $id, $optParams = array()) { $params = array('userId' => $userId, 'id' => $id); $params = array_merge($params, $optParams); return $this->call('delete', array($params)); } /** * Gets a filter. (filters.get) * * @param string $userId User's email address. The special value "me" can be * used to indicate the authenticated user. * @param string $id The ID of the filter to be fetched. * @param array $optParams Optional parameters. * @return Google_Service_Gmail_Filter */ public function get($userId, $id, $optParams = array()) { $params = array('userId' => $userId, 'id' => $id); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_Gmail_Filter"); } /** * Lists the message filters of a Gmail user. (filters.listUsersSettingsFilters) * * @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_ListFiltersResponse */ public function listUsersSettingsFilters($userId, $optParams = array()) { $params = array('userId' => $userId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Gmail_ListFiltersResponse"); } }