Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 842 Bytes

File metadata and controls

30 lines (21 loc) · 842 Bytes

Password

A user plain-text password.

Properties

Name Type Description Notes
value str The plain-text password.

Example

from kowabunga.models.password import Password

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

# convert the object into a dict
password_dict = password_instance.to_dict()
# create an instance of Password from a dict
password_from_dict = Password.from_dict(password_dict)

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