Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

PlugPropertyFormat.md

File metadata and controls

30 lines (21 loc) · 1.11 KB

PlugPropertyFormat

Properties

Name Type Description Notes
type PlugPropertyFormatType [optional]
values List[object] The enumerated value domain when <code>type=&quot;enum&quot;</code> [optional]

Example

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)

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