Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

InsightGroupCollectionMetadata

Properties

Name Type Description Notes
count_by_indicator InsightGroupsCountByIndicator

Example

from launchdarkly_api.models.insight_group_collection_metadata import InsightGroupCollectionMetadata

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

# convert the object into a dict
insight_group_collection_metadata_dict = insight_group_collection_metadata_instance.to_dict()
# create an instance of InsightGroupCollectionMetadata from a dict
insight_group_collection_metadata_from_dict = InsightGroupCollectionMetadata.from_dict(insight_group_collection_metadata_dict)

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