| Name | Type | Description | Notes |
|---|---|---|---|
| widgets | List[WidgetConfig] | [optional] | |
| pagination | Pagination | [optional] |
from ibutsu_client.models.widget_config_list import WidgetConfigList
# TODO update the JSON string below
json = "{}"
# create an instance of WidgetConfigList from a JSON string
widget_config_list_instance = WidgetConfigList.from_json(json)
# print the JSON string representation of the object
print(WidgetConfigList.to_json())
# convert the object into a dict
widget_config_list_dict = widget_config_list_instance.to_dict()
# create an instance of WidgetConfigList from a dict
widget_config_list_from_dict = WidgetConfigList.from_dict(widget_config_list_dict)