Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 914 Bytes

JobReference.md

File metadata and controls

30 lines (21 loc) · 914 Bytes

JobReference

Properties

Name Type Description Notes
type JobType
id str [optional]

Example

from waylay.services.registry.models.job_reference import JobReference

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

# convert the object into a dict
job_reference_dict = job_reference_instance.to_dict()
# create an instance of JobReference from a dict
job_reference_form_dict = job_reference.from_dict(job_reference_dict)

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