Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

PasswordPolicyInfo.md

File metadata and controls

33 lines (24 loc) · 1.13 KB

PasswordPolicyInfo

Properties

Name Type Description Notes
password_length int [optional]
use_capital_letters bool [optional]
use_lower_letters bool [optional]
use_numbers bool [optional]
use_special_characters bool [optional]

Example

from akeyless.models.password_policy_info import PasswordPolicyInfo

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

# convert the object into a dict
password_policy_info_dict = password_policy_info_instance.to_dict()
# create an instance of PasswordPolicyInfo from a dict
password_policy_info_from_dict = PasswordPolicyInfo.from_dict(password_policy_info_dict)

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