| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | value of index | [optional] |
from formkiq_client.models.index_search import IndexSearch
# TODO update the JSON string below
json = "{}"
# create an instance of IndexSearch from a JSON string
index_search_instance = IndexSearch.from_json(json)
# print the JSON string representation of the object
print(IndexSearch.to_json())
# convert the object into a dict
index_search_dict = index_search_instance.to_dict()
# create an instance of IndexSearch from a dict
index_search_from_dict = IndexSearch.from_dict(index_search_dict)