Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 894 Bytes

File metadata and controls

32 lines (24 loc) · 894 Bytes

Commit

Properties

Name Type Description Notes
id int
created_on datetime
hash str
description str
algorithm_id int

Example

from compute_api_client.models.commit import Commit

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

# convert the object into a dict
commit_dict = commit_instance.to_dict()
# create an instance of Commit from a dict
commit_form_dict = commit.from_dict(commit_dict)

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