Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 921 Bytes

File metadata and controls

29 lines (20 loc) · 921 Bytes

OpenSearchAlias

Properties

Name Type Description Notes
name str Name of Alias [optional]

Example

from formkiq_client.models.open_search_alias import OpenSearchAlias

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

# convert the object into a dict
open_search_alias_dict = open_search_alias_instance.to_dict()
# create an instance of OpenSearchAlias from a dict
open_search_alias_from_dict = OpenSearchAlias.from_dict(open_search_alias_dict)

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