Name |
Type |
Description |
Notes |
name |
str |
|
[optional] |
from akeyless.models.update_secret_val_output import UpdateSecretValOutput
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateSecretValOutput from a JSON string
update_secret_val_output_instance = UpdateSecretValOutput.from_json(json)
# print the JSON string representation of the object
print(UpdateSecretValOutput.to_json())
# convert the object into a dict
update_secret_val_output_dict = update_secret_val_output_instance.to_dict()
# create an instance of UpdateSecretValOutput from a dict
update_secret_val_output_from_dict = UpdateSecretValOutput.from_dict(update_secret_val_output_dict)
[Back to Model list] [Back to API list] [Back to README]