Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

WebPageScrapeRequest

Web Page Scrape Request

Properties

Name Type Description Notes
fetch_options WebPageImportFetchOptions [optional]
url str The Web Page url to scrape

Example

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)

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