| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target domain, such as example.com or https://example.com. Specified without www. | |
| location | SeoCompetitorsDomainLocation | [optional] | |
| language | str | Search language as an ISO code or full language name. Defaults to en. | [optional] |
| exclude_top_domains | bool | When true, exclude the largest global domains (e.g. wikipedia, amazon) from results. | [optional] |
| intersecting_domains | List[str] | Restrict results to competitors that also share keywords with these domains. | [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] |
| view | SeoDomainMetricsView | [optional] |
from unifapi.models.seo_competitors_domain_request import SeoCompetitorsDomainRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SeoCompetitorsDomainRequest from a JSON string
seo_competitors_domain_request_instance = SeoCompetitorsDomainRequest.from_json(json)
# print the JSON string representation of the object
print(SeoCompetitorsDomainRequest.to_json())
# convert the object into a dict
seo_competitors_domain_request_dict = seo_competitors_domain_request_instance.to_dict()
# create an instance of SeoCompetitorsDomainRequest from a dict
seo_competitors_domain_request_from_dict = SeoCompetitorsDomainRequest.from_dict(seo_competitors_domain_request_dict)