Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

EncryptWithClassicKeyOutput.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

EncryptWithClassicKeyOutput

Properties

Name Type Description Notes
result str [optional]

Example

from akeyless.models.encrypt_with_classic_key_output import EncryptWithClassicKeyOutput

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

# convert the object into a dict
encrypt_with_classic_key_output_dict = encrypt_with_classic_key_output_instance.to_dict()
# create an instance of EncryptWithClassicKeyOutput from a dict
encrypt_with_classic_key_output_from_dict = EncryptWithClassicKeyOutput.from_dict(encrypt_with_classic_key_output_dict)

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