Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

PasswordCredential

Properties

Name Type Description Notes
hash PasswordCredentialHash [optional]
hook PasswordCredentialHook [optional]
value str [optional]

Example

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)

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