Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.11 KB

File metadata and controls

35 lines (26 loc) · 1.11 KB

SeoSerpSummary

Properties

Name Type Description Notes
organic_results int
billable_results int
rich_results int
paid_results int
feature_counts Dict[str, int]
target_present bool [optional]
target_best_rank int [optional]

Example

from unifapi.models.seo_serp_summary import SeoSerpSummary

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

# convert the object into a dict
seo_serp_summary_dict = seo_serp_summary_instance.to_dict()
# create an instance of SeoSerpSummary from a dict
seo_serp_summary_from_dict = SeoSerpSummary.from_dict(seo_serp_summary_dict)

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