Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 909 Bytes

JobStatusProgress.md

File metadata and controls

28 lines (19 loc) · 909 Bytes

JobStatusProgress

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.job_status_progress import JobStatusProgress

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

# convert the object into a dict
job_status_progress_dict = job_status_progress_instance.to_dict()
# create an instance of JobStatusProgress from a dict
job_status_progress_form_dict = job_status_progress.from_dict(job_status_progress_dict)

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