Name | Type | Description | Notes |
---|---|---|---|
event | HALLinks | [optional] | |
job | HALLinks | [optional] | |
model | HALLinks |
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)