| Name | Type | Description | Notes |
|---|---|---|---|
| algorithm | PasswordCredentialHashAlgorithm | [optional] | |
| digest_algorithm | DigestAlgorithm | [optional] | |
| iteration_count | int | [optional] | |
| key_size | int | [optional] | |
| salt | str | [optional] | |
| salt_order | str | [optional] | |
| value | str | [optional] | |
| work_factor | int | [optional] |
from okta.models.password_credential_hash import PasswordCredentialHash
# TODO update the JSON string below
json = "{}"
# create an instance of PasswordCredentialHash from a JSON string
password_credential_hash_instance = PasswordCredentialHash.from_json(json)
# print the JSON string representation of the object
print(PasswordCredentialHash.to_json())
# convert the object into a dict
password_credential_hash_dict = password_credential_hash_instance.to_dict()
# create an instance of PasswordCredentialHash from a dict
password_credential_hash_from_dict = PasswordCredentialHash.from_dict(password_credential_hash_dict)