Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.46 KB

File metadata and controls

35 lines (26 loc) · 1.46 KB

GeoSerpRequest

Properties

Name Type Description Notes
query str Search query to inspect in AI Mode.
target str Optional domain or URL to mark when it appears in AI Mode answers, links, or cited references. [optional]
location GeoSerpLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
device str AI SERP device type. Defaults to desktop. [optional]
include_pixel_rankings bool When true, request pixel rectangle data for visual AI SERP analysis. [optional]
view GeoSerpView [optional]

Example

from unifapi.models.geo_serp_request import GeoSerpRequest

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

# convert the object into a dict
geo_serp_request_dict = geo_serp_request_instance.to_dict()
# create an instance of GeoSerpRequest from a dict
geo_serp_request_from_dict = GeoSerpRequest.from_dict(geo_serp_request_dict)

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