Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.13 KB

File metadata and controls

35 lines (26 loc) · 1.13 KB

GeoMentionSource

Properties

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

Example

from unifapi.models.geo_mention_source import GeoMentionSource

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

# convert the object into a dict
geo_mention_source_dict = geo_mention_source_instance.to_dict()
# create an instance of GeoMentionSource from a dict
geo_mention_source_from_dict = GeoMentionSource.from_dict(geo_mention_source_dict)

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