You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The number of insight groups with an excellent indicator
good
int
The number of insight groups with a good indicator
fair
int
The number of insight groups with a fair indicator
needs_attention
int
The number of insight groups with a needs attention indicator
not_calculated
int
The number of insight groups with a not calculated indicator
unknown
int
The number of insight groups with an unknown indicator
total
int
The total number of insight groups
Example
fromlaunchdarkly_api.models.insight_groups_count_by_indicatorimportInsightGroupsCountByIndicator# TODO update the JSON string belowjson="{}"# create an instance of InsightGroupsCountByIndicator from a JSON stringinsight_groups_count_by_indicator_instance=InsightGroupsCountByIndicator.from_json(json)
# print the JSON string representation of the objectprint(InsightGroupsCountByIndicator.to_json())
# convert the object into a dictinsight_groups_count_by_indicator_dict=insight_groups_count_by_indicator_instance.to_dict()
# create an instance of InsightGroupsCountByIndicator from a dictinsight_groups_count_by_indicator_from_dict=InsightGroupsCountByIndicator.from_dict(insight_groups_count_by_indicator_dict)