Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.03 KB

RequestSpellcheck.md

File metadata and controls

29 lines (21 loc) · 1.03 KB

RequestSpellcheck

Request that spellcheck fragments to be added to result set rows The properties reflect SOLR spellcheck parameters.

Properties

Name Type Description Notes
query str [optional]

Example

from alfresco_search_api_client.models.request_spellcheck import RequestSpellcheck

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

# convert the object into a dict
request_spellcheck_dict = request_spellcheck_instance.to_dict()
# create an instance of RequestSpellcheck from a dict
request_spellcheck_form_dict = request_spellcheck.from_dict(request_spellcheck_dict)

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