Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.29 KB

File metadata and controls

33 lines (24 loc) · 1.29 KB

InsightsChartMetadata

Properties

Name Type Description Notes
summary Dict[str, object]
name str Name of the chart [optional]
metrics Dict[str, InsightsChartMetric] [optional]
x_axis InsightsChartSeriesMetadataAxis
y_axis InsightsChartSeriesMetadataAxis

Example

from launchdarkly_api.models.insights_chart_metadata import InsightsChartMetadata

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

# convert the object into a dict
insights_chart_metadata_dict = insights_chart_metadata_instance.to_dict()
# create an instance of InsightsChartMetadata from a dict
insights_chart_metadata_from_dict = InsightsChartMetadata.from_dict(insights_chart_metadata_dict)

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