Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 834 Bytes

ParentKeys.md

File metadata and controls

29 lines (20 loc) · 834 Bytes

ParentKeys

Properties

Name Type Description Notes
id str

Example

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)

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