Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.16 KB

File metadata and controls

29 lines (20 loc) · 1.16 KB

ApplicationSettingsNotifications

Properties

Name Type Description Notes
vpn ApplicationSettingsNotificationsVpn [optional]

Example

from okta.models.application_settings_notifications import ApplicationSettingsNotifications

# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationSettingsNotifications from a JSON string
application_settings_notifications_instance = ApplicationSettingsNotifications.from_json(json)
# print the JSON string representation of the object
print(ApplicationSettingsNotifications.to_json())

# convert the object into a dict
application_settings_notifications_dict = application_settings_notifications_instance.to_dict()
# create an instance of ApplicationSettingsNotifications from a dict
application_settings_notifications_from_dict = ApplicationSettingsNotifications.from_dict(application_settings_notifications_dict)

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