WikiCommit page commit/revision
| Name | Type | Description | Notes |
|---|---|---|---|
| author | CommitUser | [optional] | |
| commiter | CommitUser | [optional] | |
| message | str | [optional] | |
| sha | str | [optional] |
from openapi_client.models.wiki_commit import WikiCommit
# TODO update the JSON string below
json = "{}"
# create an instance of WikiCommit from a JSON string
wiki_commit_instance = WikiCommit.from_json(json)
# print the JSON string representation of the object
print(WikiCommit.to_json())
# convert the object into a dict
wiki_commit_dict = wiki_commit_instance.to_dict()
# create an instance of WikiCommit from a dict
wiki_commit_from_dict = WikiCommit.from_dict(wiki_commit_dict)