Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

GeoMentionsAggregatedMetricsResponse

Properties

Name Type Description Notes
engine GeoEngine
location str
language str
totals GeoMentionBreakdown [optional]

Example

from unifapi.models.geo_mentions_aggregated_metrics_response import GeoMentionsAggregatedMetricsResponse

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

# convert the object into a dict
geo_mentions_aggregated_metrics_response_dict = geo_mentions_aggregated_metrics_response_instance.to_dict()
# create an instance of GeoMentionsAggregatedMetricsResponse from a dict
geo_mentions_aggregated_metrics_response_from_dict = GeoMentionsAggregatedMetricsResponse.from_dict(geo_mentions_aggregated_metrics_response_dict)

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