createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * The name of the saved query. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * Output only. The matter ID of the matter the saved query is saved in. The * server does not use this field during create and always uses matter ID in * the URL. * * @param string $matterId */ public function setMatterId($matterId) { $this->matterId = $matterId; } /** * @return string */ public function getMatterId() { return $this->matterId; } /** * The search parameters of the saved query. * * @param Query $query */ public function setQuery(Query $query) { $this->query = $query; } /** * @return Query */ public function getQuery() { return $this->query; } /** * A unique identifier for the saved query. * * @param string $savedQueryId */ public function setSavedQueryId($savedQueryId) { $this->savedQueryId = $savedQueryId; } /** * @return string */ public function getSavedQueryId() { return $this->savedQueryId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SavedQuery::class, 'Google_Service_Vault_SavedQuery');