Mention metrics grouped across platform, location, language, source/search-result domains, and brand entities.
| Name | Type | Description | Notes |
|---|---|---|---|
| by_platform | List[GeoGroupMetric] | [optional] | |
| by_location | List[GeoGroupMetric] | [optional] | |
| by_language | List[GeoGroupMetric] | [optional] | |
| by_source_domain | List[GeoGroupMetric] | [optional] | |
| by_search_results_domain | List[GeoGroupMetric] | [optional] | |
| by_brand_entity_title | List[GeoGroupMetric] | [optional] | |
| by_brand_entity_category | List[GeoGroupMetric] | [optional] |
from unifapi.models.geo_mention_breakdown import GeoMentionBreakdown
# TODO update the JSON string below
json = "{}"
# create an instance of GeoMentionBreakdown from a JSON string
geo_mention_breakdown_instance = GeoMentionBreakdown.from_json(json)
# print the JSON string representation of the object
print(GeoMentionBreakdown.to_json())
# convert the object into a dict
geo_mention_breakdown_dict = geo_mention_breakdown_instance.to_dict()
# create an instance of GeoMentionBreakdown from a dict
geo_mention_breakdown_from_dict = GeoMentionBreakdown.from_dict(geo_mention_breakdown_dict)