You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Search language as an ISO code or full language name. Defaults to en.
[optional]
include_subdomains
bool
When true (default), count subdomain rankings toward each domain.
[optional]
limit
int
Maximum number of competing domains to return. Defaults to 100.
[optional]
offset
int
Number of domains to skip from the start of the results.
[optional]
Example
fromunifapi.models.seo_serp_competitors_requestimportSeoSerpCompetitorsRequest# TODO update the JSON string belowjson="{}"# create an instance of SeoSerpCompetitorsRequest from a JSON stringseo_serp_competitors_request_instance=SeoSerpCompetitorsRequest.from_json(json)
# print the JSON string representation of the objectprint(SeoSerpCompetitorsRequest.to_json())
# convert the object into a dictseo_serp_competitors_request_dict=seo_serp_competitors_request_instance.to_dict()
# create an instance of SeoSerpCompetitorsRequest from a dictseo_serp_competitors_request_from_dict=SeoSerpCompetitorsRequest.from_dict(seo_serp_competitors_request_dict)