Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

WebPageScrapeResponse

Web Page Scrape Response

Properties

Name Type Description Notes
web_page WebPage

Example

from wordlift_client.models.web_page_scrape_response import WebPageScrapeResponse

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

# convert the object into a dict
web_page_scrape_response_dict = web_page_scrape_response_instance.to_dict()
# create an instance of WebPageScrapeResponse from a dict
web_page_scrape_response_from_dict = WebPageScrapeResponse.from_dict(web_page_scrape_response_dict)

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