Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

GetOpenSearchIndiceResponse

Properties

Name Type Description Notes
indices List[OpenSearchIndex] OpenSearch Indices [optional]

Example

from formkiq_client.models.get_open_search_indice_response import GetOpenSearchIndiceResponse

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

# convert the object into a dict
get_open_search_indice_response_dict = get_open_search_indice_response_instance.to_dict()
# create an instance of GetOpenSearchIndiceResponse from a dict
get_open_search_indice_response_from_dict = GetOpenSearchIndiceResponse.from_dict(get_open_search_indice_response_dict)

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