Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.81 KB

File metadata and controls

46 lines (37 loc) · 1.81 KB

SerpListElement

Properties

Name Type Description Notes
rank int Absolute rank of the element in the result list. [optional]
group_rank int [optional]
type str SERP element type, such as news_search, maps_search, or local_pack.
title str [optional]
url str [optional]
domain str [optional]
snippet str [optional]
image_url str [optional]
phone str [optional]
address str [optional]
rating object [optional]
latitude float [optional]
longitude float [optional]
category str [optional]
is_paid bool True when the element is an ad. [optional]
is_billable bool True for result elements that count toward billing. Ads are free context.
nested_items List[object] [optional]
extras Dict[str, object] Additional element fields preserved in the full view. [optional]

Example

from unifapi.models.serp_list_element import SerpListElement

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

# convert the object into a dict
serp_list_element_dict = serp_list_element_instance.to_dict()
# create an instance of SerpListElement from a dict
serp_list_element_from_dict = SerpListElement.from_dict(serp_list_element_dict)

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