children = $children; } /** * @return string[] */ public function getChildren() { return $this->children; } /** * @param string */ public function setNext($next) { $this->next = $next; } /** * @return string */ public function getNext() { return $this->next; } /** * @param string */ public function setParent($parent) { $this->parent = $parent; } /** * @return string */ public function getParent() { return $this->parent; } /** * @param string */ public function setPrevious($previous) { $this->previous = $previous; } /** * @return string */ public function getPrevious() { return $this->previous; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(NavigationInfo::class, 'Google_Service_WorkflowExecutions_NavigationInfo');