| Name | Type | Description | Notes |
|---|---|---|---|
| hash | PasswordCredentialHash | [optional] | |
| hook | PasswordCredentialHook | [optional] | |
| value | str | [optional] |
from okta.models.password_credential import PasswordCredential
# TODO update the JSON string below
json = "{}"
# create an instance of PasswordCredential from a JSON string
password_credential_instance = PasswordCredential.from_json(json)
# print the JSON string representation of the object
print(PasswordCredential.to_json())
# convert the object into a dict
password_credential_dict = password_credential_instance.to_dict()
# create an instance of PasswordCredential from a dict
password_credential_from_dict = PasswordCredential.from_dict(password_credential_dict)