| 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. |
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)