| Name | Type | Description | Notes |
|---|---|---|---|
| engine | GeoEngine | ||
| location | str | ||
| language | str | ||
| totals | GeoMentionBreakdown | [optional] | |
| results | List[GeoMentionItem] | One billable record per labeled group, with its mention breakdown. |
from unifapi.models.geo_mentions_cross_aggregated_metrics_response import GeoMentionsCrossAggregatedMetricsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GeoMentionsCrossAggregatedMetricsResponse from a JSON string
geo_mentions_cross_aggregated_metrics_response_instance = GeoMentionsCrossAggregatedMetricsResponse.from_json(json)
# print the JSON string representation of the object
print(GeoMentionsCrossAggregatedMetricsResponse.to_json())
# convert the object into a dict
geo_mentions_cross_aggregated_metrics_response_dict = geo_mentions_cross_aggregated_metrics_response_instance.to_dict()
# create an instance of GeoMentionsCrossAggregatedMetricsResponse from a dict
geo_mentions_cross_aggregated_metrics_response_from_dict = GeoMentionsCrossAggregatedMetricsResponse.from_dict(geo_mentions_cross_aggregated_metrics_response_dict)