Name | Type | Description | Notes |
---|---|---|---|
result | str | [optional] |
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)