email = $email;
}
/**
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* @param UserId
*/
public function setUserId(UserId $userId)
{
$this->userId = $userId;
}
/**
* @return UserId
*/
public function getUserId()
{
return $this->userId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(InviteeInfo::class, 'Google_Service_CloudSearch_InviteeInfo');