Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

CapabilitiesUpdateObject

Determines whether updates to a user's profile are pushed to the application

Properties

Name Type Description Notes
lifecycle_deactivate LifecycleDeactivateSettingObject [optional]
password PasswordSettingObject [optional]
profile ProfileSettingObject [optional]

Example

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)

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