fields = $fields; } /** * @return string */ public function getFields() { return $this->fields; } /** * The document style to update. * * @param NamedStyle $namedStyle */ public function setNamedStyle(NamedStyle $namedStyle) { $this->namedStyle = $namedStyle; } /** * @return NamedStyle */ public function getNamedStyle() { return $this->namedStyle; } /** * The document tab to update. By default, the update is applied to the first * tab. * * @param string $tabId */ public function setTabId($tabId) { $this->tabId = $tabId; } /** * @return string */ public function getTabId() { return $this->tabId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UpdateNamedStyleRequest::class, 'Google_Service_Docs_UpdateNamedStyleRequest');