Skip to content

CommitInfo

Properties

Name Type Description Notes
author str [optional]
message str [optional]
timestamp int [optional]
version str [optional] [readonly]

Example

from odm_api.models.commit_info import CommitInfo

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

# convert the object into a dict
commit_info_dict = commit_info_instance.to_dict()
# create an instance of CommitInfo from a dict
commit_info_from_dict = CommitInfo.from_dict(commit_info_dict)
[Back to Model list] [Back to API list] [Back to README]