Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 989 Bytes

File metadata and controls

29 lines (20 loc) · 989 Bytes

PasswordCredentialHook

Properties

Name Type Description Notes
type str [optional]

Example

from okta.models.password_credential_hook import PasswordCredentialHook

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

# convert the object into a dict
password_credential_hook_dict = password_credential_hook_instance.to_dict()
# create an instance of PasswordCredentialHook from a dict
password_credential_hook_from_dict = PasswordCredentialHook.from_dict(password_credential_hook_dict)

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