Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

GeoMentionBrandEntity

Properties

Name Type Description Notes
title str [optional]
category str [optional]
position int [optional]

Example

from unifapi.models.geo_mention_brand_entity import GeoMentionBrandEntity

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

# convert the object into a dict
geo_mention_brand_entity_dict = geo_mention_brand_entity_instance.to_dict()
# create an instance of GeoMentionBrandEntity from a dict
geo_mention_brand_entity_from_dict = GeoMentionBrandEntity.from_dict(geo_mention_brand_entity_dict)

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