admin = $admin; } /** * @return string */ public function getAdmin() { return $this->admin; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param bool */ public function setPendingInvitation($pendingInvitation) { $this->pendingInvitation = $pendingInvitation; } /** * @return bool */ public function getPendingInvitation() { return $this->pendingInvitation; } /** * @param string */ public function setRole($role) { $this->role = $role; } /** * @return string */ public function getRole() { return $this->role; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Admin::class, 'Google_Service_MyBusinessAccountManagement_Admin');