Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 865 Bytes

File metadata and controls

29 lines (20 loc) · 865 Bytes

IndexSearch

Properties

Name Type Description Notes
value str value of index [optional]

Example

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)

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