Name | Type | Description | Notes |
---|---|---|---|
type | PlugPropertyFormatType | ||
values | List[object] | The enumerated value domain when <code>type="enum"</code> | [optional] |
from waylay.services.registry.models.plug_property_format import PlugPropertyFormat
# TODO update the JSON string below
json = "{}"
# create an instance of PlugPropertyFormat from a JSON string
plug_property_format_instance = PlugPropertyFormat.from_json(json)
# print the JSON string representation of the object
print PlugPropertyFormat.to_json()
# convert the object into a dict
plug_property_format_dict = plug_property_format_instance.to_dict()
# create an instance of PlugPropertyFormat from a dict
plug_property_format_form_dict = plug_property_format.from_dict(plug_property_format_dict)