Files
PyGithub/github/CheckRunAnnotation.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

27 lines
744 B
Python

from typing import Any, Dict
from github.GithubObject import NonCompletableGithubObject
class CheckRunAnnotation(NonCompletableGithubObject):
def __repr__(self) -> str: ...
def _initAttributes(self) -> None: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
@property
def annotation_level(self) -> str: ...
@property
def end_column(self) -> int: ...
@property
def end_line(self) -> int: ...
@property
def message(self) -> str: ...
@property
def path(self) -> str: ...
@property
def raw_details(self) -> str: ...
@property
def start_column(self) -> int: ...
@property
def start_line(self) -> int: ...
@property
def title(self) -> str: ...