Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 796 Bytes

File metadata and controls

27 lines (19 loc) · 796 Bytes

Opensearch

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.opensearch import Opensearch

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

# convert the object into a dict
opensearch_dict = opensearch_instance.to_dict()
# create an instance of Opensearch from a dict
opensearch_form_dict = opensearch.from_dict(opensearch_dict)

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