childTabs = $childTabs; } /** * @return Tab[] */ public function getChildTabs() { return $this->childTabs; } /** * A tab with document contents, like text and images. * * @param DocumentTab $documentTab */ public function setDocumentTab(DocumentTab $documentTab) { $this->documentTab = $documentTab; } /** * @return DocumentTab */ public function getDocumentTab() { return $this->documentTab; } /** * The properties of the tab, like ID and title. * * @param TabProperties $tabProperties */ public function setTabProperties(TabProperties $tabProperties) { $this->tabProperties = $tabProperties; } /** * @return TabProperties */ public function getTabProperties() { return $this->tabProperties; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Tab::class, 'Google_Service_Docs_Tab');