mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
Co-authored-by: Nikolay Yurin <yurinnick@meta.com> Co-authored-by: Enrico Minack <github@enrico.minack.dev>
18 lines
500 B
Python
18 lines
500 B
Python
from datetime import datetime
|
|
from typing import Any, Dict
|
|
|
|
from github.GithubObject import NonCompletableGithubObject
|
|
|
|
class Rate(NonCompletableGithubObject):
|
|
def __repr__(self) -> str: ...
|
|
def _initAttributes(self) -> None: ...
|
|
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
|
|
@property
|
|
def limit(self) -> int: ...
|
|
@property
|
|
def remaining(self) -> int: ...
|
|
@property
|
|
def reset(self) -> datetime: ...
|
|
@property
|
|
def used(self) -> int: ...
|