Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.25 KB

File metadata and controls

34 lines (25 loc) · 1.25 KB

DashboardForUpdate

A dashboard

Properties

Name Type Description Notes
title str Dashboard title [optional]
position float Dashboard record Position [optional]
page_layout_id UUID Dashboard page layout [optional]
created_by AttachmentCreatedBy [optional]
updated_by AttachmentUpdatedBy [optional]

Example

from twentycrm_client.models.dashboard_for_update import DashboardForUpdate

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

# convert the object into a dict
dashboard_for_update_dict = dashboard_for_update_instance.to_dict()
# create an instance of DashboardForUpdate from a dict
dashboard_for_update_from_dict = DashboardForUpdate.from_dict(dashboard_for_update_dict)

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