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