Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.81 KB

File metadata and controls

36 lines (27 loc) · 1.81 KB

GeoMentionsTopPagesRequest

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]
links_scope str Which links to extract pages from. Defaults to sources. [optional]
filters GeoMentionsAggregatedMetricsRequestFilters [optional]
items_list_limit int Max number of top pages to return. Default 5. [optional]
internal_list_limit int Max elements per internal grouped array. Default 5. [optional]

Example

from unifapi.models.geo_mentions_top_pages_request import GeoMentionsTopPagesRequest

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

# convert the object into a dict
geo_mentions_top_pages_request_dict = geo_mentions_top_pages_request_instance.to_dict()
# create an instance of GeoMentionsTopPagesRequest from a dict
geo_mentions_top_pages_request_from_dict = GeoMentionsTopPagesRequest.from_dict(geo_mentions_top_pages_request_dict)

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