1from datetime import datetime
2from typing import Any, Dict
3
4from github.GithubObject import NonCompletableGithubObject
5
6class View(NonCompletableGithubObject):
7    def __repr__(self) -> str: ...
8    def _initAttributes(self) -> None: ...
9    def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
10    @property
11    def timestamp(self) -> datetime: ...
12    @property
13    def count(self) -> int: ...
14    @property
15    def uniques(self) -> int: ...
16