action = $action; } /** * @return string */ public function getAction() { return $this->action; } /** * @param Expr */ public function setCondition(Expr $condition) { $this->condition = $condition; } /** * @return Expr */ public function getCondition() { return $this->condition; } /** * @param string */ public function setMember($member) { $this->member = $member; } /** * @return string */ public function getMember() { return $this->member; } /** * @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(BindingDelta::class, 'Google_Service_Iam_BindingDelta');