Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 920 Bytes

File metadata and controls

32 lines (24 loc) · 920 Bytes

PageJob

Properties

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

Example

from compute_api_client.models.page_job import PageJob

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

# convert the object into a dict
page_job_dict = page_job_instance.to_dict()
# create an instance of PageJob from a dict
page_job_form_dict = page_job.from_dict(page_job_dict)

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