Determines whether to update a user in the application when a user in Okta is updated
| Name | Type | Description | Notes |
|---|---|---|---|
| status | EnabledStatus | [optional] |
from okta.models.lifecycle_create_setting_object import LifecycleCreateSettingObject
# TODO update the JSON string below
json = "{}"
# create an instance of LifecycleCreateSettingObject from a JSON string
lifecycle_create_setting_object_instance = LifecycleCreateSettingObject.from_json(json)
# print the JSON string representation of the object
print(LifecycleCreateSettingObject.to_json())
# convert the object into a dict
lifecycle_create_setting_object_dict = lifecycle_create_setting_object_instance.to_dict()
# create an instance of LifecycleCreateSettingObject from a dict
lifecycle_create_setting_object_from_dict = LifecycleCreateSettingObject.from_dict(lifecycle_create_setting_object_dict)