Query.
Name | Type | Description | Notes |
---|---|---|---|
language | str | The query language in which the query is written. | [optional] [default to 'afts'] |
user_query | str | The exact search request typed in by the user | [optional] |
query | str | The query which may have been generated in some way from the userQuery |
from alfresco_search_api_client.models.request_query import RequestQuery
# TODO update the JSON string below
json = "{}"
# create an instance of RequestQuery from a JSON string
request_query_instance = RequestQuery.from_json(json)
# print the JSON string representation of the object
print RequestQuery.to_json()
# convert the object into a dict
request_query_dict = request_query_instance.to_dict()
# create an instance of RequestQuery from a dict
request_query_form_dict = request_query.from_dict(request_query_dict)