| Name |
Type |
Description |
Notes |
| key |
str |
Secret key value. |
|
from plesk_client.models.secret_key_response import SecretKeyResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SecretKeyResponse from a JSON string
secret_key_response_instance = SecretKeyResponse.from_json(json)
# print the JSON string representation of the object
print(SecretKeyResponse.to_json())
# convert the object into a dict
secret_key_response_dict = secret_key_response_instance.to_dict()
# create an instance of SecretKeyResponse from a dict
secret_key_response_from_dict = SecretKeyResponse.from_dict(secret_key_response_dict)
[Back to Model list] [Back to API list] [Back to README]