| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Domain, subdomain, or page to analyze. A domain or subdomain is specified without https:// and www. (example.com); a page is specified as an absolute URL (https://example.com/blog/). | |
| main_domain | bool | Treat the target and competitors as root domains rather than exact subdomains. | [optional] |
| exclude_large_domains | bool | Exclude very large generic domains (e.g. youtube.com, facebook.com) from results. | [optional] |
| exclude_internal_backlinks | bool | Exclude internal backlinks from the target's own subdomains. Defaults to true. | [optional] |
| rank_scale | SeoBacklinksRankScale | [optional] | |
| filters | SeoBacklinksCompetitorsRequestFilters | [optional] | |
| order_by | List[DataForSeoOrderByRule] | Sort the returned competitors. Each rule is {"field","dir"} with dir asc or desc; up to 3 rules, applied in order. Sortable fields: rank, intersections. | [optional] |
| limit | int | Maximum number of records to return. Defaults to 100. | [optional] |
| offset | int | Number of records to skip from the start of the results. | [optional] |
from unifapi.models.seo_backlinks_competitors_request import SeoBacklinksCompetitorsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksCompetitorsRequest from a JSON string
seo_backlinks_competitors_request_instance = SeoBacklinksCompetitorsRequest.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksCompetitorsRequest.to_json())
# convert the object into a dict
seo_backlinks_competitors_request_dict = seo_backlinks_competitors_request_instance.to_dict()
# create an instance of SeoBacklinksCompetitorsRequest from a dict
seo_backlinks_competitors_request_from_dict = SeoBacklinksCompetitorsRequest.from_dict(seo_backlinks_competitors_request_dict)