Web Page Scrape Request
| Name | Type | Description | Notes |
|---|---|---|---|
| fetch_options | WebPageImportFetchOptions | [optional] | |
| url | str | The Web Page url to scrape |
from wordlift_client.models.web_page_scrape_request import WebPageScrapeRequest
# TODO update the JSON string below
json = "{}"
# create an instance of WebPageScrapeRequest from a JSON string
web_page_scrape_request_instance = WebPageScrapeRequest.from_json(json)
# print the JSON string representation of the object
print(WebPageScrapeRequest.to_json())
# convert the object into a dict
web_page_scrape_request_dict = web_page_scrape_request_instance.to_dict()
# create an instance of WebPageScrapeRequest from a dict
web_page_scrape_request_from_dict = WebPageScrapeRequest.from_dict(web_page_scrape_request_dict)