Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1004 Bytes

WikiCommitList.md

File metadata and controls

31 lines (22 loc) · 1004 Bytes

WikiCommitList

WikiCommitList commit/revision list

Properties

Name Type Description Notes
commits List[WikiCommit] [optional]
count int [optional]

Example

from clientapi_forgejo.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)

[Back to Model list] [Back to API list] [Back to README]