Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.9 KB

AnalysesRequest.md

File metadata and controls

39 lines (30 loc) · 1.9 KB

AnalysesRequest

The analysis request.

Properties

Name Type Description Notes
text str The text to analyse. [optional]
url str The URL to analyse. [optional]
query str The query string to analyse. [optional]
html str The html to analyse. [optional]
language_code str The language code used for content analysis, e.g. `en`. [optional] [default to 'en']
query_location_name str The location name for the query, e.g. United Kingdom. [optional] [default to 'United States']
query_search_engine str The search engine domain for the query, if not set will be chosen according to `query_location_name` [optional]
linked_data bool Whether to include results from Linked Data (e.g. DBpedia), by default true. [optional] [default to True]
local_data bool Whether to include results from the local Knowledge Graph, by default true. [optional] [default to True]
network_data bool Whether to include results from connected Knowledge Graphs, by default true. [optional] [default to True]

Example

from wordlift_client.models.analyses_request import AnalysesRequest

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

# convert the object into a dict
analyses_request_dict = analyses_request_instance.to_dict()
# create an instance of AnalysesRequest from a dict
analyses_request_from_dict = AnalysesRequest.from_dict(analyses_request_dict)

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