| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target domain, such as example.com or https://example.com. Specified without www. | |
| location | SeoDomainRankOverviewLocation | [optional] | |
| language | str | Search language as an ISO code or full language name. Defaults to en. | [optional] |
| view | SeoDomainMetricsView | [optional] |
from unifapi.models.seo_domain_rank_overview_request import SeoDomainRankOverviewRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SeoDomainRankOverviewRequest from a JSON string
seo_domain_rank_overview_request_instance = SeoDomainRankOverviewRequest.from_json(json)
# print the JSON string representation of the object
print(SeoDomainRankOverviewRequest.to_json())
# convert the object into a dict
seo_domain_rank_overview_request_dict = seo_domain_rank_overview_request_instance.to_dict()
# create an instance of SeoDomainRankOverviewRequest from a dict
seo_domain_rank_overview_request_from_dict = SeoDomainRankOverviewRequest.from_dict(seo_domain_rank_overview_request_dict)