Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.47 KB

File metadata and controls

34 lines (25 loc) · 1.47 KB

SeoSubdomainsRequest

Properties

Name Type Description Notes
target str Target domain, such as example.com or https://example.com. Specified without www.
location SeoSubdomainsLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
limit int Maximum number of subdomains to return. Defaults to 100. [optional]
offset int Number of subdomains to skip from the start of the results. [optional]
view SeoDomainMetricsView [optional]

Example

from unifapi.models.seo_subdomains_request import SeoSubdomainsRequest

# TODO update the JSON string below
json = "{}"
# create an instance of SeoSubdomainsRequest from a JSON string
seo_subdomains_request_instance = SeoSubdomainsRequest.from_json(json)
# print the JSON string representation of the object
print(SeoSubdomainsRequest.to_json())

# convert the object into a dict
seo_subdomains_request_dict = seo_subdomains_request_instance.to_dict()
# create an instance of SeoSubdomainsRequest from a dict
seo_subdomains_request_from_dict = SeoSubdomainsRequest.from_dict(seo_subdomains_request_dict)

[Back to Model list] [Back to API list] [Back to README]