Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.97 KB

File metadata and controls

41 lines (32 loc) · 1.97 KB

DashboardForResponse

A dashboard

Properties

Name Type Description Notes
id UUID Id [optional]
created_at datetime Creation date [optional]
updated_at datetime Last time the record was changed [optional]
deleted_at datetime Date when the record was deleted [optional]
title str Dashboard title [optional]
position float Dashboard record Position [optional]
page_layout_id UUID Dashboard page layout [optional]
created_by AttachmentForResponseCreatedBy [optional]
updated_by AttachmentForResponseUpdatedBy [optional]
attachments List[AttachmentForResponse] Attachments linked to the dashboard [optional]
timeline_activities List[TimelineActivityForResponse] Timeline activities linked to the dashboard [optional]
favorites List[FavoriteForResponse] Favorites linked to the dashboard [optional]

Example

from twentycrm_client.models.dashboard_for_response import DashboardForResponse

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

# convert the object into a dict
dashboard_for_response_dict = dashboard_for_response_instance.to_dict()
# create an instance of DashboardForResponse from a dict
dashboard_for_response_from_dict = DashboardForResponse.from_dict(dashboard_for_response_dict)

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