Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.67 KB

Request.md

File metadata and controls

38 lines (29 loc) · 1.67 KB

Request

The request

Properties

Name Type Description Notes
html Html [optional]
url str The url of the page to analyze. [optional]
url_client str The client which the analysis should use to extract the content, by default chrome is used. [optional]
language str The content language, 2 letters code, e.g. 'en'.
text str A textual fragment. [optional]
exclude List[str] An array of item IDs to exclude from the analysis results. [optional]
scope str The scope of the analysis, one of 'local', 'network', 'cloud-only', 'network-only' or 'all'.
matches int Filter out results that don't have at least the specified number of occurrences. By default 1. [optional]
links str When returning an interpolated HTML results, matches should have the 'wl-link' class. By default 'no'. [optional]

Example

from wordlift_client.models.request import Request

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

# convert the object into a dict
request_dict = request_instance.to_dict()
# create an instance of Request from a dict
request_from_dict = Request.from_dict(request_dict)

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