Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

V2CrawlerSitemapInner

Properties

Name Type Description Notes
url str Sitemap URL [optional]
recursive bool Recursively follow sitemap links [optional]

Example

from quantcdn.models.v2_crawler_sitemap_inner import V2CrawlerSitemapInner

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

# convert the object into a dict
v2_crawler_sitemap_inner_dict = v2_crawler_sitemap_inner_instance.to_dict()
# create an instance of V2CrawlerSitemapInner from a dict
v2_crawler_sitemap_inner_from_dict = V2CrawlerSitemapInner.from_dict(v2_crawler_sitemap_inner_dict)

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