Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 991 Bytes

File metadata and controls

30 lines (21 loc) · 991 Bytes

WidgetTypeList

Properties

Name Type Description Notes
types List[WidgetType] [optional]
pagination Pagination [optional]

Example

from ibutsu_client.models.widget_type_list import WidgetTypeList

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

# convert the object into a dict
widget_type_list_dict = widget_type_list_instance.to_dict()
# create an instance of WidgetTypeList from a dict
widget_type_list_from_dict = WidgetTypeList.from_dict(widget_type_list_dict)

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