Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.72 KB

File metadata and controls

39 lines (30 loc) · 1.72 KB

InsightGroupScores

Properties

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]

Example

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)

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