Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.42 KB

File metadata and controls

33 lines (24 loc) · 1.42 KB

InsightGroupCollection

Properties

Name Type Description Notes
total_count int The total number of insight groups
items List[InsightGroup] A list of insight groups
links Dict[str, Link] The location and content type of related resources [optional]
metadata InsightGroupCollectionMetadata [optional]
score_metadata InsightGroupCollectionScoreMetadata [optional]

Example

from launchdarkly_api.models.insight_group_collection import InsightGroupCollection

# TODO update the JSON string below
json = "{}"
# create an instance of InsightGroupCollection from a JSON string
insight_group_collection_instance = InsightGroupCollection.from_json(json)
# print the JSON string representation of the object
print(InsightGroupCollection.to_json())

# convert the object into a dict
insight_group_collection_dict = insight_group_collection_instance.to_dict()
# create an instance of InsightGroupCollection from a dict
insight_group_collection_from_dict = InsightGroupCollection.from_dict(insight_group_collection_dict)

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