Files
PyGithub/github/AccessToken.pyi
T
Steve Kowalik 429fcc7307 Add typing files for OAuth classes (#1656)
The additional classes added for OAuth predated the inclusion of typing
files, add them for the new classes.
2020-08-18 14:46:34 +10:00

15 lines
422 B
Python

from typing import Any, Dict
from github.GithubObject import NonCompletableGithubObject
class AccessToken(NonCompletableGithubObject):
def __repr__(self) -> str: ...
def _initAttributes(self) -> None: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
@property
def token(self) -> str: ...
@property
def type(self) -> str: ...
@property
def scope(self) -> str: ...