| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | Domain, page URL, or aggregation label this row summarizes. | |
| mentions | float | Total LLM mentions for this row, summed across platforms. | [optional] |
| breakdown | GeoMentionBreakdown | [optional] |
from unifapi.models.geo_mention_item import GeoMentionItem
# TODO update the JSON string below
json = "{}"
# create an instance of GeoMentionItem from a JSON string
geo_mention_item_instance = GeoMentionItem.from_json(json)
# print the JSON string representation of the object
print(GeoMentionItem.to_json())
# convert the object into a dict
geo_mention_item_dict = geo_mention_item_instance.to_dict()
# create an instance of GeoMentionItem from a dict
geo_mention_item_from_dict = GeoMentionItem.from_dict(geo_mention_item_dict)