Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 842 Bytes

Model.md

File metadata and controls

30 lines (21 loc) · 842 Bytes

Model

Properties

Name Type Description Notes
event HALLinks [optional]
model HALLinks

Example

from waylay.services.registry.models.model import Model

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

# convert the object into a dict
model_dict = model_instance.to_dict()
# create an instance of Model from a dict
model_form_dict = model.from_dict(model_dict)

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