Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.11 KB

RequestQuery.md

File metadata and controls

31 lines (23 loc) · 1.11 KB

RequestQuery

Query.

Properties

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

Example

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)

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