basic = $basic; } /** * @return BasicLevel */ public function getBasic() { return $this->basic; } /** * @param CustomLevel */ public function setCustom(CustomLevel $custom) { $this->custom = $custom; } /** * @return CustomLevel */ public function getCustom() { return $this->custom; } /** * @param string */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccessLevel::class, 'Google_Service_AccessContextManager_AccessLevel');