Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.4 KB

File metadata and controls

33 lines (24 loc) · 1.4 KB

SeoDomainRankOverviewResponse

Properties

Name Type Description Notes
target str Target domain echoed from the request.
location str
language str
view SeoDomainMetricsView
results List[SeoDomainMetrics] Ranking distribution and estimated traffic for the target domain. One billable record per location/language overview.

Example

from unifapi.models.seo_domain_rank_overview_response import SeoDomainRankOverviewResponse

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

# convert the object into a dict
seo_domain_rank_overview_response_dict = seo_domain_rank_overview_response_instance.to_dict()
# create an instance of SeoDomainRankOverviewResponse from a dict
seo_domain_rank_overview_response_from_dict = SeoDomainRankOverviewResponse.from_dict(seo_domain_rank_overview_response_dict)

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