WikiCommitList commit/revision list
| Name | Type | Description | Notes |
|---|---|---|---|
| commits | List[WikiCommit] | [optional] | |
| count | int | [optional] |
from openapi_client.models.wiki_commit_list import WikiCommitList
# TODO update the JSON string below
json = "{}"
# create an instance of WikiCommitList from a JSON string
wiki_commit_list_instance = WikiCommitList.from_json(json)
# print the JSON string representation of the object
print(WikiCommitList.to_json())
# convert the object into a dict
wiki_commit_list_dict = wiki_commit_list_instance.to_dict()
# create an instance of WikiCommitList from a dict
wiki_commit_list_from_dict = WikiCommitList.from_dict(wiki_commit_list_dict)