mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
14 lines
400 B
Python
14 lines
400 B
Python
from typing import Any, Dict, List
|
|
|
|
from github.GithubObject import NonCompletableGithubObject
|
|
|
|
class Autolink(NonCompletableGithubObject):
|
|
def _initAttributes(self) -> None: ...
|
|
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
|
|
@property
|
|
def id(self) -> int: ...
|
|
@property
|
|
def key_prefix(self) -> str: ...
|
|
@property
|
|
def url_template(self) -> str: ...
|