| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[MetricListingRep] | An array of metrics | [optional] |
| links | Dict[str, Link] | The location and content type of related resources | [optional] |
| total_count | int | [optional] |
from launchdarkly_api.models.metric_collection_rep import MetricCollectionRep
# TODO update the JSON string below
json = "{}"
# create an instance of MetricCollectionRep from a JSON string
metric_collection_rep_instance = MetricCollectionRep.from_json(json)
# print the JSON string representation of the object
print(MetricCollectionRep.to_json())
# convert the object into a dict
metric_collection_rep_dict = metric_collection_rep_instance.to_dict()
# create an instance of MetricCollectionRep from a dict
metric_collection_rep_from_dict = MetricCollectionRep.from_dict(metric_collection_rep_dict)