Name | Type | Description | Notes |
---|---|---|---|
author | CommitUser | [optional] | |
committer | CommitUser | [optional] | |
message | str | [optional] | |
tree | CommitMeta | [optional] | |
url | str | [optional] | |
verification | PayloadCommitVerification | [optional] |
from clientapi_forgejo.models.repo_commit import RepoCommit
# TODO update the JSON string below
json = "{}"
# create an instance of RepoCommit from a JSON string
repo_commit_instance = RepoCommit.from_json(json)
# print the JSON string representation of the object
print(RepoCommit.to_json())
# convert the object into a dict
repo_commit_dict = repo_commit_instance.to_dict()
# create an instance of RepoCommit from a dict
repo_commit_from_dict = RepoCommit.from_dict(repo_commit_dict)