Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

GeoMentionsCrossGroup

Properties

Name Type Description Notes
label str Aggregation label that groups and identifies this target set in the response.
target List[GeoMentionsTarget] Up to 10 target entities, each a domain or a keyword.

Example

from unifapi.models.geo_mentions_cross_group import GeoMentionsCrossGroup

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

# convert the object into a dict
geo_mentions_cross_group_dict = geo_mentions_cross_group_instance.to_dict()
# create an instance of GeoMentionsCrossGroup from a dict
geo_mentions_cross_group_from_dict = GeoMentionsCrossGroup.from_dict(geo_mentions_cross_group_dict)

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