Determines whether updates to a user's profile are pushed to the application
| Name | Type | Description | Notes |
|---|---|---|---|
| lifecycle_deactivate | LifecycleDeactivateSettingObject | [optional] | |
| password | PasswordSettingObject | [optional] | |
| profile | ProfileSettingObject | [optional] |
from okta.models.capabilities_update_object import CapabilitiesUpdateObject
# TODO update the JSON string below
json = "{}"
# create an instance of CapabilitiesUpdateObject from a JSON string
capabilities_update_object_instance = CapabilitiesUpdateObject.from_json(json)
# print the JSON string representation of the object
print(CapabilitiesUpdateObject.to_json())
# convert the object into a dict
capabilities_update_object_dict = capabilities_update_object_instance.to_dict()
# create an instance of CapabilitiesUpdateObject from a dict
capabilities_update_object_from_dict = CapabilitiesUpdateObject.from_dict(capabilities_update_object_dict)