Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.22 KB

File metadata and controls

29 lines (20 loc) · 1.22 KB

CreateManyDashboards201ResponseData

Properties

Name Type Description Notes
create_dashboards List[DashboardForResponse] [optional]

Example

from twentycrm_client.models.create_many_dashboards201_response_data import CreateManyDashboards201ResponseData

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

# convert the object into a dict
create_many_dashboards201_response_data_dict = create_many_dashboards201_response_data_instance.to_dict()
# create an instance of CreateManyDashboards201ResponseData from a dict
create_many_dashboards201_response_data_from_dict = CreateManyDashboards201ResponseData.from_dict(create_many_dashboards201_response_data_dict)

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