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