Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.35 KB

File metadata and controls

36 lines (27 loc) · 1.35 KB

PasswordCredentialHash

Properties

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]

Example

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)

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