| Name |
Type |
Description |
Notes |
| page |
int |
|
|
| depth |
int |
|
|
| start_rank |
int |
|
|
| end_rank |
int |
|
|
| rank_offset |
int |
|
|
from unifapi.models.seo_serp_rank_window import SeoSerpRankWindow
# TODO update the JSON string below
json = "{}"
# create an instance of SeoSerpRankWindow from a JSON string
seo_serp_rank_window_instance = SeoSerpRankWindow.from_json(json)
# print the JSON string representation of the object
print(SeoSerpRankWindow.to_json())
# convert the object into a dict
seo_serp_rank_window_dict = seo_serp_rank_window_instance.to_dict()
# create an instance of SeoSerpRankWindow from a dict
seo_serp_rank_window_from_dict = SeoSerpRankWindow.from_dict(seo_serp_rank_window_dict)
[Back to Model list] [Back to API list] [Back to README]