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