Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1023 Bytes

File metadata and controls

30 lines (21 loc) · 1023 Bytes

WidgetConfigList

Properties

Name Type Description Notes
widgets List[WidgetConfig] [optional]
pagination Pagination [optional]

Example

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)

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