Determines whether Okta creates and pushes a password in the application for each assigned user
| Name | Type | Description | Notes |
|---|---|---|---|
| change | ChangeEnum | [optional] [default to ChangeEnum.KEEP_EXISTING] | |
| seed | SeedEnum | [optional] [default to SeedEnum.RANDOM] | |
| status | EnabledStatus | [optional] |
from okta.models.password_setting_object import PasswordSettingObject
# TODO update the JSON string below
json = "{}"
# create an instance of PasswordSettingObject from a JSON string
password_setting_object_instance = PasswordSettingObject.from_json(json)
# print the JSON string representation of the object
print(PasswordSettingObject.to_json())
# convert the object into a dict
password_setting_object_dict = password_setting_object_instance.to_dict()
# create an instance of PasswordSettingObject from a dict
password_setting_object_from_dict = PasswordSettingObject.from_dict(password_setting_object_dict)