Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

PlugProperty.md

File metadata and controls

34 lines (25 loc) · 1.23 KB

PlugProperty

Interface specification of a plug property.

Properties

Name Type Description Notes
name str The name of a plug input or output property.
data_type PlugPropertyDataType [optional]
mandatory bool If <code>true</code> this property is required. [optional]
format PlugPropertyFormat [optional]
default_value object [optional]

Example

from waylay.services.registry.models.plug_property import PlugProperty

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

# convert the object into a dict
plug_property_dict = plug_property_instance.to_dict()
# create an instance of PlugProperty from a dict
plug_property_form_dict = plug_property.from_dict(plug_property_dict)

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