Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 985 Bytes

File metadata and controls

29 lines (20 loc) · 985 Bytes

PasswordDictionary

Properties

Name Type Description Notes
common PasswordDictionaryCommon [optional]

Example

from okta.models.password_dictionary import PasswordDictionary

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

# convert the object into a dict
password_dictionary_dict = password_dictionary_instance.to_dict()
# create an instance of PasswordDictionary from a dict
password_dictionary_from_dict = PasswordDictionary.from_dict(password_dictionary_dict)

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