action = $action; } /** * @return string */ public function getAction() { return $this->action; } /** * @param string[] */ public function setRole($role) { $this->role = $role; } /** * @return string[] */ public function getRole() { return $this->role; } /** * @param bool */ public function setSendNotification($sendNotification) { $this->sendNotification = $sendNotification; } /** * @return bool */ public function getSendNotification() { return $this->sendNotification; } /** * @param string */ public function setView($view) { $this->view = $view; } /** * @return string */ public function getView() { return $this->view; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ResolveAccessProposalRequest::class, 'Google_Service_Drive_ResolveAccessProposalRequest');