Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 910 Bytes

Model1.md

File metadata and controls

31 lines (22 loc) · 910 Bytes

Model1

Properties

Name Type Description Notes
event HALLinks [optional]
job HALLinks [optional]
model HALLinks

Example

from waylay.services.registry.models.model1 import Model1

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

# convert the object into a dict
model1_dict = model1_instance.to_dict()
# create an instance of Model1 from a dict
model1_form_dict = model1.from_dict(model1_dict)

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