Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.42 KB

File metadata and controls

35 lines (26 loc) · 1.42 KB

GeoMentionsSearchResponse

Properties

Name Type Description Notes
engine GeoEngine
location str
language str
total_count int Total mentions matching the request. [optional]
returned_count int Mentions returned in results.
cursor str search_after_token for the next page, when more remain. [optional]
results List[GeoMentionRecord] One billable record per matched mention.

Example

from unifapi.models.geo_mentions_search_response import GeoMentionsSearchResponse

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

# convert the object into a dict
geo_mentions_search_response_dict = geo_mentions_search_response_instance.to_dict()
# create an instance of GeoMentionsSearchResponse from a dict
geo_mentions_search_response_from_dict = GeoMentionsSearchResponse.from_dict(geo_mentions_search_response_dict)

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