Name | Type | Description | Notes |
---|---|---|---|
id | str |
from waylay.services.registry.models.parent_keys import ParentKeys
# TODO update the JSON string below
json = "{}"
# create an instance of ParentKeys from a JSON string
parent_keys_instance = ParentKeys.from_json(json)
# print the JSON string representation of the object
print ParentKeys.to_json()
# convert the object into a dict
parent_keys_dict = parent_keys_instance.to_dict()
# create an instance of ParentKeys from a dict
parent_keys_form_dict = parent_keys.from_dict(parent_keys_dict)