| Name | Type | Description | Notes |
|---|---|---|---|
| temp_password | str | [optional] [readonly] |
from okta.models.temp_password import TempPassword
# TODO update the JSON string below
json = "{}"
# create an instance of TempPassword from a JSON string
temp_password_instance = TempPassword.from_json(json)
# print the JSON string representation of the object
print(TempPassword.to_json())
# convert the object into a dict
temp_password_dict = temp_password_instance.to_dict()
# create an instance of TempPassword from a dict
temp_password_from_dict = TempPassword.from_dict(temp_password_dict)