Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.42 KB

File metadata and controls

35 lines (26 loc) · 1.42 KB

WidgetConfig

Properties

Name Type Description Notes
id str The internal ID of the WidgetConfig [optional]
type str The type of widget, one of either "widget" or "view" [optional]
widget str The widget to render, from the list at /widget/types [optional]
project_id str The project ID for which the widget is designed [optional]
weight int The weighting for the widget, lower weight means it will display first [optional]
params object A dictionary of parameters to send to the widget [optional]
title str The title shown on the widget or page [optional]

Example

from ibutsu_client.models.widget_config import WidgetConfig

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

# convert the object into a dict
widget_config_dict = widget_config_instance.to_dict()
# create an instance of WidgetConfig from a dict
widget_config_from_dict = WidgetConfig.from_dict(widget_config_dict)

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