Name | Type | Description | Notes |
---|---|---|---|
breach_info | PasswordBreachInfo | [optional] | |
score_info | PasswordScoreInfo | [optional] |
from akeyless.models.password_security_info import PasswordSecurityInfo
# TODO update the JSON string below
json = "{}"
# create an instance of PasswordSecurityInfo from a JSON string
password_security_info_instance = PasswordSecurityInfo.from_json(json)
# print the JSON string representation of the object
print(PasswordSecurityInfo.to_json())
# convert the object into a dict
password_security_info_dict = password_security_info_instance.to_dict()
# create an instance of PasswordSecurityInfo from a dict
password_security_info_from_dict = PasswordSecurityInfo.from_dict(password_security_info_dict)