Skip to content

ElasticIndexSearchQueryOptions

Properties

Name Type Description Notes
source Source2 [optional]
from_ ModelFrom [optional]
size Size1 [optional]
query Query [optional]
aggs Aggs [optional]
sort Sort [optional]

Example

from deepsearch.cps.apis.public_v2.models.elastic_index_search_query_options import ElasticIndexSearchQueryOptions

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

# convert the object into a dict
elastic_index_search_query_options_dict = elastic_index_search_query_options_instance.to_dict()
# create an instance of ElasticIndexSearchQueryOptions from a dict
elastic_index_search_query_options_form_dict = elastic_index_search_query_options.from_dict(elastic_index_search_query_options_dict)
[Back to Model list] [Back to API list] [Back to README]