from typing import Any, Dict, Optional class NotificationSubject: def __repr__(self) -> str: ... def _initAttributes(self) -> None: ... def _useAttributes(self, attributes: Dict[str, Any]) -> None: ... @property def latest_comment_url(self) -> Optional[str]: ... @property def title(self) -> str: ... @property def type(self) -> str: ... @property def url(self) -> Optional[str]: ...