Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.33 KB

File metadata and controls

33 lines (24 loc) · 1.33 KB

GeoMentionsTopPagesResponse

Properties

Name Type Description Notes
engine GeoEngine
location str
language str
totals GeoMentionBreakdown [optional]
results List[GeoMentionItem] Top cited pages, one billable record each, with per-dimension breakdowns.

Example

from unifapi.models.geo_mentions_top_pages_response import GeoMentionsTopPagesResponse

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

# convert the object into a dict
geo_mentions_top_pages_response_dict = geo_mentions_top_pages_response_instance.to_dict()
# create an instance of GeoMentionsTopPagesResponse from a dict
geo_mentions_top_pages_response_from_dict = GeoMentionsTopPagesResponse.from_dict(geo_mentions_top_pages_response_dict)

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