Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 872 Bytes

DecryptOutput.md

File metadata and controls

29 lines (20 loc) · 872 Bytes

DecryptOutput

Properties

Name Type Description Notes
result str [optional]

Example

from akeyless.models.decrypt_output import DecryptOutput

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

# convert the object into a dict
decrypt_output_dict = decrypt_output_instance.to_dict()
# create an instance of DecryptOutput from a dict
decrypt_output_from_dict = DecryptOutput.from_dict(decrypt_output_dict)

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