Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

RotatedSecretCreateOutput.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

RotatedSecretCreateOutput

Properties

Name Type Description Notes
name str [optional]

Example

from akeyless.models.rotated_secret_create_output import RotatedSecretCreateOutput

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

# convert the object into a dict
rotated_secret_create_output_dict = rotated_secret_create_output_instance.to_dict()
# create an instance of RotatedSecretCreateOutput from a dict
rotated_secret_create_output_from_dict = RotatedSecretCreateOutput.from_dict(rotated_secret_create_output_dict)

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