Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 924 Bytes

File metadata and controls

30 lines (21 loc) · 924 Bytes

JobLogPage

Properties

Name Type Description Notes
logs List[JobLogLine] The logline data
next_start int [optional]

Example

from compute_api_client.models.job_log_page import JobLogPage

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

# convert the object into a dict
job_log_page_dict = job_log_page_instance.to_dict()
# create an instance of JobLogPage from a dict
job_log_page_from_dict = JobLogPage.from_dict(job_log_page_dict)

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