Name | Type | Description | Notes |
---|---|---|---|
id | int | ||
created_on | datetime | ||
hash | str | ||
description | str | ||
algorithm_id | int |
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)