Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 873 Bytes

File metadata and controls

29 lines (20 loc) · 873 Bytes

TempPassword

Properties

Name Type Description Notes
temp_password str [optional] [readonly]

Example

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)

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