mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
Co-authored-by: Aleksei Fedotov <aleksei@fedotov.email>
31 lines
863 B
Python
31 lines
863 B
Python
from github.WorkflowRun import WorkflowRun
|
|
from datetime import datetime
|
|
from github.GithubObject import NonCompletableGithubObject as NonCompletableGithubObject
|
|
|
|
class Artifact(NonCompletableGithubObject):
|
|
@property
|
|
def archive_download_url(self) -> str: ...
|
|
@property
|
|
def created_at(self) -> datetime: ...
|
|
def delete(self) -> bool: ...
|
|
@property
|
|
def expired(self) -> bool: ...
|
|
@property
|
|
def expires_at(self) -> datetime: ...
|
|
@property
|
|
def head_sha(self) -> str: ...
|
|
@property
|
|
def id(self) -> int: ...
|
|
@property
|
|
def name(self) -> str: ...
|
|
@property
|
|
def node_id(self) -> str: ...
|
|
@property
|
|
def size_in_bytes(self) -> int: ...
|
|
@property
|
|
def updated_at(self) -> datetime: ...
|
|
@property
|
|
def url(self) -> str: ...
|
|
@property
|
|
def workflow_run(self) -> WorkflowRun: ...
|