Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.33 KB

File metadata and controls

37 lines (28 loc) · 1.33 KB

FileCommitResponse

Properties

Name Type Description Notes
author CommitUser [optional]
committer CommitUser [optional]
created datetime [optional]
html_url str [optional]
message str [optional]
parents List[CommitMeta] [optional]
sha str [optional]
tree CommitMeta [optional]
url str [optional]

Example

from openapi_client.models.file_commit_response import FileCommitResponse

# TODO update the JSON string below
json = "{}"
# create an instance of FileCommitResponse from a JSON string
file_commit_response_instance = FileCommitResponse.from_json(json)
# print the JSON string representation of the object
print(FileCommitResponse.to_json())

# convert the object into a dict
file_commit_response_dict = file_commit_response_instance.to_dict()
# create an instance of FileCommitResponse from a dict
file_commit_response_from_dict = FileCommitResponse.from_dict(file_commit_response_dict)

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