Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

DecryptWithClassicKeyOutput.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

DecryptWithClassicKeyOutput

Properties

Name Type Description Notes
result str [optional]

Example

from akeyless.models.decrypt_with_classic_key_output import DecryptWithClassicKeyOutput

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

# convert the object into a dict
decrypt_with_classic_key_output_dict = decrypt_with_classic_key_output_instance.to_dict()
# create an instance of DecryptWithClassicKeyOutput from a dict
decrypt_with_classic_key_output_from_dict = DecryptWithClassicKeyOutput.from_dict(decrypt_with_classic_key_output_dict)

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