Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

SeoRelevantPageItemMetrics

Properties

Name Type Description Notes
organic SeoDomainMetricGroup [optional]
paid SeoDomainMetricsPaid [optional]

Example

from unifapi.models.seo_relevant_page_item_metrics import SeoRelevantPageItemMetrics

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

# convert the object into a dict
seo_relevant_page_item_metrics_dict = seo_relevant_page_item_metrics_instance.to_dict()
# create an instance of SeoRelevantPageItemMetrics from a dict
seo_relevant_page_item_metrics_from_dict = SeoRelevantPageItemMetrics.from_dict(seo_relevant_page_item_metrics_dict)

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