Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

HostingV1GitGitCommitResource

Properties

Name Type Description Notes
hash str Full commit SHA
message str Commit message
author HostingV1GitGitCommitAuthorResource

Example

from hostinger_api.models.hosting_v1_git_git_commit_resource import HostingV1GitGitCommitResource

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

# convert the object into a dict
hosting_v1_git_git_commit_resource_dict = hosting_v1_git_git_commit_resource_instance.to_dict()
# create an instance of HostingV1GitGitCommitResource from a dict
hosting_v1_git_git_commit_resource_from_dict = HostingV1GitGitCommitResource.from_dict(hosting_v1_git_git_commit_resource_dict)

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