| Name | Type | Description | Notes |
|---|---|---|---|
| environment | Environment | [optional] | |
| scores | InsightGroupScores | [optional] | |
| score_metadata | InsightGroupCollectionScoreMetadata | [optional] | |
| key | str | The insight group key | |
| name | str | The insight group name | |
| project_key | str | The project key | |
| environment_key | str | The environment key | |
| application_keys | List[str] | The application keys | [optional] |
| created_at | int |
from launchdarkly_api.models.insight_group import InsightGroup
# TODO update the JSON string below
json = "{}"
# create an instance of InsightGroup from a JSON string
insight_group_instance = InsightGroup.from_json(json)
# print the JSON string representation of the object
print(InsightGroup.to_json())
# convert the object into a dict
insight_group_dict = insight_group_instance.to_dict()
# create an instance of InsightGroup from a dict
insight_group_from_dict = InsightGroup.from_dict(insight_group_dict)