Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

File metadata and controls

33 lines (24 loc) · 1.01 KB

WikiCommit

WikiCommit page commit/revision

Properties

Name Type Description Notes
author CommitUser [optional]
commiter CommitUser [optional]
message str [optional]
sha str [optional]

Example

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)

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