Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 881 Bytes

File metadata and controls

27 lines (19 loc) · 881 Bytes

PropertiesValkey

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.properties_valkey import PropertiesValkey

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

# convert the object into a dict
properties_valkey_dict = properties_valkey_instance.to_dict()
# create an instance of PropertiesValkey from a dict
properties_valkey_form_dict = properties_valkey.from_dict(properties_valkey_dict)

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