Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.5 KB

File metadata and controls

33 lines (24 loc) · 1.5 KB

GeoMentionsCrossAggregatedMetricsResponse

Properties

Name Type Description Notes
engine GeoEngine
location str
language str
totals GeoMentionBreakdown [optional]
results List[GeoMentionItem] One billable record per labeled group, with its mention breakdown.

Example

from unifapi.models.geo_mentions_cross_aggregated_metrics_response import GeoMentionsCrossAggregatedMetricsResponse

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

# convert the object into a dict
geo_mentions_cross_aggregated_metrics_response_dict = geo_mentions_cross_aggregated_metrics_response_instance.to_dict()
# create an instance of GeoMentionsCrossAggregatedMetricsResponse from a dict
geo_mentions_cross_aggregated_metrics_response_from_dict = GeoMentionsCrossAggregatedMetricsResponse.from_dict(geo_mentions_cross_aggregated_metrics_response_dict)

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