forked from PyGithub/PyGithub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDownload.pyi
More file actions
50 lines (48 loc) · 1.49 KB
/
Download.pyi
File metadata and controls
50 lines (48 loc) · 1.49 KB
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
45
46
47
48
49
50
from datetime import datetime
from typing import Any, Dict, Optional
from github.GithubObject import CompletableGithubObject
class Download(CompletableGithubObject):
def __repr__(self) -> str: ...
def _initAttributes(self) -> None: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
@property
def accesskeyid(self) -> Optional[str]: ...
@property
def acl(self) -> Optional[str]: ...
@property
def bucket(self) -> Optional[str]: ...
@property
def content_type(self) -> Optional[str]: ...
@property
def created_at(self) -> Optional[datetime]: ...
def delete(self) -> None: ...
@property
def description(self) -> Optional[str]: ...
@property
def download_count(self) -> Optional[int]: ...
@property
def expirationdate(self) -> Optional[datetime]: ...
@property
def html_url(self) -> Optional[str]: ...
@property
def id(self) -> int: ...
@property
def mime_type(self) -> Optional[str]: ...
@property
def name(self) -> Optional[str]: ...
@property
def path(self) -> Optional[str]: ...
@property
def policy(self) -> Optional[str]: ...
@property
def prefix(self) -> Optional[str]: ...
@property
def redirect(self) -> Optional[bool]: ...
@property
def s3_url(self) -> Optional[str]: ...
@property
def signature(self) -> Optional[str]: ...
@property
def size(self) -> Optional[int]: ...
@property
def url(self) -> Optional[str]: ...