Taxonomy assignment metrics response.
| Name | Type | Description | Notes |
|---|---|---|---|
| taxonomy_id | str | ||
| time_range | ApiAnalyticsTaxonomiesModelsTimeRange | ||
| metrics | List[AssignmentMetric] | ||
| summary | Dict[str, object] | [optional] |
from mixpeek.models.assignment_metrics_response import AssignmentMetricsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AssignmentMetricsResponse from a JSON string
assignment_metrics_response_instance = AssignmentMetricsResponse.from_json(json)
# print the JSON string representation of the object
print(AssignmentMetricsResponse.to_json())
# convert the object into a dict
assignment_metrics_response_dict = assignment_metrics_response_instance.to_dict()
# create an instance of AssignmentMetricsResponse from a dict
assignment_metrics_response_from_dict = AssignmentMetricsResponse.from_dict(assignment_metrics_response_dict)