| Name |
Type |
Description |
Notes |
| value |
str |
The group this row aggregates, e.g. a platform, location, or domain. |
|
| type |
str |
Dimension the value belongs to when DataForSEO labels it, e.g. platform or location. |
[optional] |
| mentions |
float |
LLM mentions counted for this group. |
[optional] |
| ai_search_volume |
float |
AI search volume attributed to this group. |
[optional] |
from unifapi.models.geo_group_metric import GeoGroupMetric
# TODO update the JSON string below
json = "{}"
# create an instance of GeoGroupMetric from a JSON string
geo_group_metric_instance = GeoGroupMetric.from_json(json)
# print the JSON string representation of the object
print(GeoGroupMetric.to_json())
# convert the object into a dict
geo_group_metric_dict = geo_group_metric_instance.to_dict()
# create an instance of GeoGroupMetric from a dict
geo_group_metric_from_dict = GeoGroupMetric.from_dict(geo_group_metric_dict)
[Back to Model list] [Back to API list] [Back to README]