Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

GeoMentionsTopDomainsResponse

Properties

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

Example

from unifapi.models.geo_mentions_top_domains_response import GeoMentionsTopDomainsResponse

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

# convert the object into a dict
geo_mentions_top_domains_response_dict = geo_mentions_top_domains_response_instance.to_dict()
# create an instance of GeoMentionsTopDomainsResponse from a dict
geo_mentions_top_domains_response_from_dict = GeoMentionsTopDomainsResponse.from_dict(geo_mentions_top_domains_response_dict)

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