Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.04 KB

File metadata and controls

38 lines (29 loc) · 2.04 KB

GeoMentionsSearchRequest

Properties

Name Type Description Notes
target List[GeoMentionsTarget] Up to 10 target entities, each a domain or a keyword.
engine GeoEngine [optional]
location GeoKeywordSearchVolumeRequestLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
filters GeoMentionsSearchRequestFilters [optional]
order_by List[DataForSeoOrderByRule] Sort the matched mentions. Each rule is {"field","dir"} with dir asc or desc; up to 3 rules, applied in order. Sortable fields: ai_search_volume, platform, model. [optional]
limit int Max mentions to return. Default 100. [optional]
offset int Mentions to skip. Use cursor beyond 9000. [optional]
cursor str search_after_token from a previous response, for deep pagination. [optional]
view GeoView [optional]

Example

from unifapi.models.geo_mentions_search_request import GeoMentionsSearchRequest

# TODO update the JSON string below
json = "{}"
# create an instance of GeoMentionsSearchRequest from a JSON string
geo_mentions_search_request_instance = GeoMentionsSearchRequest.from_json(json)
# print the JSON string representation of the object
print(GeoMentionsSearchRequest.to_json())

# convert the object into a dict
geo_mentions_search_request_dict = geo_mentions_search_request_instance.to_dict()
# create an instance of GeoMentionsSearchRequest from a dict
geo_mentions_search_request_from_dict = GeoMentionsSearchRequest.from_dict(geo_mentions_search_request_dict)

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