Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.82 KB

File metadata and controls

48 lines (39 loc) · 1.82 KB

SeoSerpResult

Properties

Name Type Description Notes
rank int [optional]
source_rank int Rank reported by DataForSEO before page offset adjustment. [optional]
group_rank int [optional]
type str
title str [optional]
url str [optional]
domain str [optional]
snippet str [optional]
text str [optional]
markdown str [optional]
breadcrumb str [optional]
page int [optional]
position object [optional]
rectangle object [optional]
is_paid bool [optional]
is_billable bool True for organic search result records that count toward billing.
is_target bool [optional]
questions List[str] People Also Ask questions extracted from this SERP element. [optional]
nested_items List[object] [optional]
extras Dict[str, object] Additional fields for rich SERP elements. [optional]

Example

from unifapi.models.seo_serp_result import SeoSerpResult

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

# convert the object into a dict
seo_serp_result_dict = seo_serp_result_instance.to_dict()
# create an instance of SeoSerpResult from a dict
seo_serp_result_from_dict = SeoSerpResult.from_dict(seo_serp_result_dict)

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