Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.39 KB

CombinedStatus.md

File metadata and controls

36 lines (27 loc) · 1.39 KB

CombinedStatus

CombinedStatus holds the combined state of several statuses for a single commit

Properties

Name Type Description Notes
commit_url str [optional]
repository Repository [optional]
sha str [optional]
state str CommitStatusState holds the state of a CommitStatus It can be "pending", "success", "error" and "failure" [optional]
statuses List[CommitStatus] [optional]
total_count int [optional]
url str [optional]

Example

from clientapi_forgejo.models.combined_status import CombinedStatus

# TODO update the JSON string below
json = "{}"
# create an instance of CombinedStatus from a JSON string
combined_status_instance = CombinedStatus.from_json(json)
# print the JSON string representation of the object
print(CombinedStatus.to_json())

# convert the object into a dict
combined_status_dict = combined_status_instance.to_dict()
# create an instance of CombinedStatus from a dict
combined_status_from_dict = CombinedStatus.from_dict(combined_status_dict)

[Back to Model list] [Back to API list] [Back to README]