Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 1003 Bytes

SqlDashboardOutput.md

File metadata and controls

28 lines (20 loc) · 1003 Bytes

SqlDashboardOutput

Properties

Name Type Description Notes
widgets SqlDashboardWidgetOutput [optional]

Example

from databricks_jobs.models.sql_dashboard_output import SqlDashboardOutput

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

# convert the object into a dict
sql_dashboard_output_dict = sql_dashboard_output_instance.to_dict()
# create an instance of SqlDashboardOutput from a dict
sql_dashboard_output_form_dict = sql_dashboard_output.from_dict(sql_dashboard_output_dict)

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