containsText = $containsText; } /** * @return SubstringMatchCriteria */ public function getContainsText() { return $this->containsText; } /** * The text that will replace the matched text. * * @param string $replaceText */ public function setReplaceText($replaceText) { $this->replaceText = $replaceText; } /** * @return string */ public function getReplaceText() { return $this->replaceText; } /** * Optional. The criteria used to specify in which tabs the replacement * occurs. When omitted, the replacement applies to all tabs. In a document * containing a single tab: - If provided, must match the singular tab's ID. - * If omitted, the replacement applies to the singular tab. In a document * containing multiple tabs: - If provided, the replacement applies to the * specified tabs. - If omitted, the replacement applies to all tabs. * * @param TabsCriteria $tabsCriteria */ public function setTabsCriteria(TabsCriteria $tabsCriteria) { $this->tabsCriteria = $tabsCriteria; } /** * @return TabsCriteria */ public function getTabsCriteria() { return $this->tabsCriteria; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReplaceAllTextRequest::class, 'Google_Service_Docs_ReplaceAllTextRequest');