Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 930 Bytes

File metadata and controls

30 lines (21 loc) · 930 Bytes

JobLogLine

Properties

Name Type Description Notes
timestamp int Timestamp(nanosec) of the recieved log
line str The recieved log statement

Example

from compute_api_client.models.job_log_line import JobLogLine

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

# convert the object into a dict
job_log_line_dict = job_log_line_instance.to_dict()
# create an instance of JobLogLine from a dict
job_log_line_from_dict = JobLogLine.from_dict(job_log_line_dict)

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