Skip to content

Files

Latest commit

ce5fd4a · Feb 20, 2025

History

History
29 lines (20 loc) · 930 Bytes

EncryptFileOutput.md

File metadata and controls

29 lines (20 loc) · 930 Bytes

EncryptFileOutput

Properties

Name Type Description Notes
result str [optional]

Example

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]