A user plain-text password.
| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | The plain-text password. |
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)