You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dataforseo_client/models/absolute_items.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ class AbsoluteItems(BaseModel):
17
17
"""# noqa: E501
18
18
geo_id: Optional[StrictStr] =Field(default=None, description=r"location identifier. you can use this field for matching obtained results with location parameters specified in the request. see the full list of available locations with their geo_id here or by making a separate request to https://api.dataforseo.com/v3/keywords_data/dataforseo_trends/locations. example:. US-NY")
19
19
geo_name: Optional[StrictStr] =Field(default=None, description=r"location name. you can use this field for matching obtained results with location parameters specified in the request. see the full list of available locations with their geo_name here or by making a separate request to https://api.dataforseo.com/v3/keywords_data/dataforseo_trends/locations. example:. Andorra")
20
-
values: Optional[List[Optional[StrictStr]]] =Field(default=None, description=r"keyword popularity rates within a given location. represents location-specific keyword popularity rate over the specified time range;. using these values, you can understand which of the specified keywords is more popular in the related location;. the first value in the array is provided for the first term from the keywords array, the second value is provided for the second keyword, and so on;. calculation: we determine the highest popularity value across all specified keywords within a given location, and then express the popularity values of each keyword as a percentage of the highest value (100);. a value of 100 is the peak popularity for the term. a value of 50 means that the term is half as popular. a value of 0 means there was not enough data for this term")
20
+
values: Optional[List[Optional[StrictStr]]] =Field(default=None, description=r"contains data on relative keyword popularity by country or region")
fromtypingimportAny, ClassVar, Dict, List, Optional, Union
8
+
fromtypingimportOptional, Set, Any, Dict, List
9
+
fromtyping_extensionsimportSelf
10
+
11
+
12
+
13
+
14
+
classAggregatedMetricsInfoTotalInfo(BaseModel):
15
+
"""
16
+
AggregatedMetricsInfoTotalInfo
17
+
"""# noqa: E501
18
+
mentions: Optional[StrictInt] =Field(default=None, description=r"total LLM mentions count. the number of times the target keyword or domain were mentioned in relation to this specific grouping key")
19
+
ai_search_volume: Optional[StrictInt] =Field(default=None, description=r"aggregated AI search volume for mentions within this grouping. learn more about this metric here")
0 commit comments