Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.53 KB

File metadata and controls

36 lines (27 loc) · 1.53 KB

MetricsChartConfigOutput

Properties

Name Type Description Notes
chart_title str The title of the chart.
chart_type str The type of the chart.
chart_data_tooltip str [optional]
table_name str The name of the table.
metric_name str The name of the metric.
aggregation_type MetricsAggregationType The aggregation type of the metric.
look_back_period MetricsLookBackPeriod [optional]
threshold MetricsThreshold [optional]

Example

from onelens_backend_client.models.metrics_chart_config_output import MetricsChartConfigOutput

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

# convert the object into a dict
metrics_chart_config_output_dict = metrics_chart_config_output_instance.to_dict()
# create an instance of MetricsChartConfigOutput from a dict
metrics_chart_config_output_form_dict = metrics_chart_config_output.from_dict(metrics_chart_config_output_dict)

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