| Name | Type | Description | Notes |
|---|---|---|---|
| created | datetime | [optional] | |
| sha | str | [optional] | |
| url | str | [optional] |
from clientapi_forgejo.models.commit_meta import CommitMeta
# TODO update the JSON string below
json = "{}"
# create an instance of CommitMeta from a JSON string
commit_meta_instance = CommitMeta.from_json(json)
# print the JSON string representation of the object
print(CommitMeta.to_json())
# convert the object into a dict
commit_meta_dict = commit_meta_instance.to_dict()
# create an instance of CommitMeta from a dict
commit_meta_from_dict = CommitMeta.from_dict(commit_meta_dict)