Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 853 Bytes

Model2.md

File metadata and controls

30 lines (21 loc) · 853 Bytes

Model2

Properties

Name Type Description Notes
job HALLinks [optional]
model HALLinks

Example

from waylay.services.registry.models.model2 import Model2

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

# convert the object into a dict
model2_dict = model2_instance.to_dict()
# create an instance of Model2 from a dict
model2_form_dict = model2.from_dict(model2_dict)

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