| Name | Type | Description | Notes |
|---|---|---|---|
| period | InsightPeriod | ||
| last_period | InsightPeriod |
from launchdarkly_api.models.insight_group_collection_score_metadata import InsightGroupCollectionScoreMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of InsightGroupCollectionScoreMetadata from a JSON string
insight_group_collection_score_metadata_instance = InsightGroupCollectionScoreMetadata.from_json(json)
# print the JSON string representation of the object
print(InsightGroupCollectionScoreMetadata.to_json())
# convert the object into a dict
insight_group_collection_score_metadata_dict = insight_group_collection_score_metadata_instance.to_dict()
# create an instance of InsightGroupCollectionScoreMetadata from a dict
insight_group_collection_score_metadata_from_dict = InsightGroupCollectionScoreMetadata.from_dict(insight_group_collection_score_metadata_dict)