Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.65 KB

File metadata and controls

40 lines (31 loc) · 1.65 KB

GeoMentionRecord

Properties

Name Type Description Notes
engine GeoEngine [optional]
model str [optional]
question str [optional]
answer str Model answer in markdown. Included for standard and full views. [optional]
ai_search_volume float [optional]
monthly_searches List[GeoMentionMonthly] [optional]
sources List[GeoMentionSource] [optional]
search_results List[GeoMentionSearchResult] [optional]
brand_entities List[GeoMentionBrandEntity] [optional]
fan_out_queries List[str] [optional]
first_response_at str [optional]
last_response_at str [optional]

Example

from unifapi.models.geo_mention_record import GeoMentionRecord

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

# convert the object into a dict
geo_mention_record_dict = geo_mention_record_instance.to_dict()
# create an instance of GeoMentionRecord from a dict
geo_mention_record_from_dict = GeoMentionRecord.from_dict(geo_mention_record_dict)

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