Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

LifecycleCreateSettingObject

Determines whether to update a user in the application when a user in Okta is updated

Properties

Name Type Description Notes
status EnabledStatus [optional]

Example

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)

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