Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

PasswordSecurityInfo.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

PasswordSecurityInfo

Properties

Name Type Description Notes
breach_info PasswordBreachInfo [optional]
score_info PasswordScoreInfo [optional]

Example

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)

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