Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 965 Bytes

PageCommit.md

File metadata and controls

32 lines (24 loc) · 965 Bytes

PageCommit

Properties

Name Type Description Notes
items List[Commit]
total int
page int
size int
pages int [optional]

Example

from compute_api_client.models.page_commit import PageCommit

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

# convert the object into a dict
page_commit_dict = page_commit_instance.to_dict()
# create an instance of PageCommit from a dict
page_commit_form_dict = page_commit.from_dict(page_commit_dict)

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