Files
PyGithub/github/CheckRunOutput.pyi
T
Dhruv Manilawala c77c06760e Add Support for Check Runs (#1727)
* Add CheckRun object and stub file
* Add list of check runs endpoint for Commit
* Add get check run endpoint for Repository
* Add CheckRun test file and replay data files
* Add CheckRunAnnotation object and stub file
* Add create CheckRun API endpoint to Repository
* Update and add new tests for CheckRun endpoint:
2020-11-19 14:29:04 +11:00

19 lines
541 B
Python

from typing import Any, Dict
from github.GithubObject import NonCompletableGithubObject
class CheckRunOutput(NonCompletableGithubObject):
def __repr__(self) -> str: ...
def _initAttributes(self) -> None: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
@property
def annotations_count(self) -> int: ...
@property
def annotations_url(self) -> str: ...
@property
def summary(self) -> str: ...
@property
def text(self) -> str: ...
@property
def title(self) -> str: ...