The Sitemap Import request
| Name | Type | Description | Notes |
|---|---|---|---|
| embedding | EmbeddingRequest | [optional] | |
| id_generator | str | The entity id generator, by default uses the web page path. | [optional] [default to 'default'] |
| output_types | List[str] | The type of the generated entities, by default `http://schema.org/WebPage`. | [optional] [default to ["http://schema.org/WebPage"]] |
| overwrite | bool | Whether to overwrite existing entities. | [optional] [default to False] |
| sitemap_url | str | URL of a sitemap to crawl and import. Only http/https scheme and publicly routable addresses are accepted. | [optional] |
| sitemap_url_regex | str | A regex filter to apply to discovered URLs, it only applies to URLs in sitemaps. | [optional] |
| urls | List[str] | Explicit list of page URLs to import. Only http/https scheme and publicly routable addresses are accepted. | [optional] |
from wordlift_client.models.sitemap_import_request import SitemapImportRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SitemapImportRequest from a JSON string
sitemap_import_request_instance = SitemapImportRequest.from_json(json)
# print the JSON string representation of the object
print(SitemapImportRequest.to_json())
# convert the object into a dict
sitemap_import_request_dict = sitemap_import_request_instance.to_dict()
# create an instance of SitemapImportRequest from a dict
sitemap_import_request_from_dict = SitemapImportRequest.from_dict(sitemap_import_request_dict)