| 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. |
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)