Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

DocumentationProperty.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

DocumentationProperty

Properties

Name Type Description Notes
name str Name of the documented property.
description str Documentation of the property.

Example

from waylay.services.registry.models.documentation_property import DocumentationProperty

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

# convert the object into a dict
documentation_property_dict = documentation_property_instance.to_dict()
# create an instance of DocumentationProperty from a dict
documentation_property_form_dict = documentation_property.from_dict(documentation_property_dict)

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