Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1016 Bytes

PasswordScoreInfo.md

File metadata and controls

31 lines (22 loc) · 1016 Bytes

PasswordScoreInfo

Properties

Name Type Description Notes
score int [optional]
status str [optional]
suggestions List[str] [optional]

Example

from akeyless.models.password_score_info import PasswordScoreInfo

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

# convert the object into a dict
password_score_info_dict = password_score_info_instance.to_dict()
# create an instance of PasswordScoreInfo from a dict
password_score_info_from_dict = PasswordScoreInfo.from_dict(password_score_info_dict)

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