Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 857 Bytes

JobTypeSchema.md

File metadata and controls

28 lines (19 loc) · 857 Bytes

JobTypeSchema

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.job_type_schema import JobTypeSchema

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

# convert the object into a dict
job_type_schema_dict = job_type_schema_instance.to_dict()
# create an instance of JobTypeSchema from a dict
job_type_schema_form_dict = job_type_schema.from_dict(job_type_schema_dict)

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