"group_id", "userId" => "user_id", ]; /** * @var string */ public $groupId; /** * @var string */ public $userId; /** * @param string */ public function setGroupId($groupId) { $this->groupId = $groupId; } /** * @return string */ public function getGroupId() { return $this->groupId; } /** * @param string */ public function setUserId($userId) { $this->userId = $userId; } /** * @return string */ public function getUserId() { return $this->userId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Principal::class, 'Google_Service_Connectors_Principal');