Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

WidgetTypeElement.md

File metadata and controls

33 lines (24 loc) · 1.24 KB

WidgetTypeElement

An element for widget types

Properties

Name Type Description Notes
id int The internal Id of widget element [optional] [readonly]
category str The category for this element
sequence int sequence of element in widget; if not defined the index in array is taken [optional]
config object individual config parameters depending on category [optional]

Example

from eliona.api_client2.models.widget_type_element import WidgetTypeElement

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

# convert the object into a dict
widget_type_element_dict = widget_type_element_instance.to_dict()
# create an instance of WidgetTypeElement from a dict
widget_type_element_from_dict = WidgetTypeElement.from_dict(widget_type_element_dict)

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