Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

RotateEncryptionKeyInput

Properties

Name Type Description Notes
old_key str
new_key str

Example

from stratum.models.rotate_encryption_key_input import RotateEncryptionKeyInput

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

# convert the object into a dict
rotate_encryption_key_input_dict = rotate_encryption_key_input_instance.to_dict()
# create an instance of RotateEncryptionKeyInput from a dict
rotate_encryption_key_input_from_dict = RotateEncryptionKeyInput.from_dict(rotate_encryption_key_input_dict)

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