Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

GeoMentionItem

Properties

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]

Example

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)

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