| Name | Type | Description | Notes |
|---|---|---|---|
| engine | GeoEngine | ||
| location | str | ||
| language | str | ||
| totals | GeoMentionBreakdown | [optional] |
from unifapi.models.geo_mentions_aggregated_metrics_response import GeoMentionsAggregatedMetricsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GeoMentionsAggregatedMetricsResponse from a JSON string
geo_mentions_aggregated_metrics_response_instance = GeoMentionsAggregatedMetricsResponse.from_json(json)
# print the JSON string representation of the object
print(GeoMentionsAggregatedMetricsResponse.to_json())
# convert the object into a dict
geo_mentions_aggregated_metrics_response_dict = geo_mentions_aggregated_metrics_response_instance.to_dict()
# create an instance of GeoMentionsAggregatedMetricsResponse from a dict
geo_mentions_aggregated_metrics_response_from_dict = GeoMentionsAggregatedMetricsResponse.from_dict(geo_mentions_aggregated_metrics_response_dict)