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