Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.17 KB

File metadata and controls

34 lines (25 loc) · 1.17 KB

GeoMentionSearchResult

Properties

Name Type Description Notes
title str [optional]
url str [optional]
domain str [optional]
description str [optional]
position int [optional]
publication_date str [optional]

Example

from unifapi.models.geo_mention_search_result import GeoMentionSearchResult

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

# convert the object into a dict
geo_mention_search_result_dict = geo_mention_search_result_instance.to_dict()
# create an instance of GeoMentionSearchResult from a dict
geo_mention_search_result_from_dict = GeoMentionSearchResult.from_dict(geo_mention_search_result_dict)

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