Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.6 KB

File metadata and controls

36 lines (27 loc) · 1.6 KB

GeoMentionBreakdown

Mention metrics grouped across platform, location, language, source/search-result domains, and brand entities.

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]