1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
from typing import Any, Dict, Optional, Union
from github.GithubObject import CompletableGithubObject
from github.Issue import Issue
from github.Label import Label
from github.Milestone import Milestone
from github.NamedUser import NamedUser
class IssueEvent(CompletableGithubObject):
def __repr__(self) -> str: ...
def _initAttributes(self) -> None: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
@property
def actor(self) -> NamedUser: ...
@property
def assignee(self) -> Optional[NamedUser]: ...
@property
def assigner(self) -> Optional[NamedUser]: ...
@property
def commit_id(self) -> Optional[str]: ...
@property
def commit_url(self) -> Optional[str]: ...
@property
def dismissed_review(self) -> Optional[Dict[str, Union[str, int]]]: ...
@property
def event(self) -> str: ...
@property
def issue(self) -> Issue: ...
@property
def label(self) -> Optional[Label]: ...
@property
def lock_reason(self) -> Optional[str]: ...
@property
def milestone(self) -> Optional[Milestone]: ...
@property
def node_id(self) -> str: ...
@property
def rename(self) -> Optional[Dict[str, str]]: ...
@property
def requested_reviewer(self) -> Optional[NamedUser]: ...
@property
def review_requester(self) -> Optional[NamedUser]: ...
@property
def url(self) -> str: ...
|