Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

RotateEncryptionKeyResult

Properties

Name Type Description Notes
re_encrypted_count int

Example

from stratum.models.rotate_encryption_key_result import RotateEncryptionKeyResult

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

# convert the object into a dict
rotate_encryption_key_result_dict = rotate_encryption_key_result_instance.to_dict()
# create an instance of RotateEncryptionKeyResult from a dict
rotate_encryption_key_result_from_dict = RotateEncryptionKeyResult.from_dict(rotate_encryption_key_result_dict)

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