Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

WebPageImportResponse

Web Page Import Response

Properties

Name Type Description Notes
id str The id/iri of the web page in the Graph.
model str
web_page WebPage

Example

from wordlift_client.models.web_page_import_response import WebPageImportResponse

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

# convert the object into a dict
web_page_import_response_dict = web_page_import_response_instance.to_dict()
# create an instance of WebPageImportResponse from a dict
web_page_import_response_from_dict = WebPageImportResponse.from_dict(web_page_import_response_dict)

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