| Name | Type | Description | Notes |
|---|---|---|---|
| overall | InsightsMetricScore | ||
| deployment_frequency | InsightsMetricScore | ||
| deployment_failure_rate | InsightsMetricScore | ||
| lead_time | InsightsMetricScore | ||
| impact_size | InsightsMetricScore | ||
| experimentation_coverage | InsightsMetricScore | ||
| flag_health | InsightsMetricScore | ||
| velocity | InsightsMetricScore | ||
| risk | InsightsMetricScore | ||
| efficiency | InsightsMetricScore | ||
| creation_ratio | InsightsMetricScore | [optional] |
from launchdarkly_api.models.insight_group_scores import InsightGroupScores
# TODO update the JSON string below
json = "{}"
# create an instance of InsightGroupScores from a JSON string
insight_group_scores_instance = InsightGroupScores.from_json(json)
# print the JSON string representation of the object
print(InsightGroupScores.to_json())
# convert the object into a dict
insight_group_scores_dict = insight_group_scores_instance.to_dict()
# create an instance of InsightGroupScores from a dict
insight_group_scores_from_dict = InsightGroupScores.from_dict(insight_group_scores_dict)