| Name | Type | Description | Notes |
|---|
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)