Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.36 KB

File metadata and controls

37 lines (28 loc) · 1.36 KB

InsightGroup

Properties

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

Example

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)

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