Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.33 KB

File metadata and controls

31 lines (22 loc) · 1.33 KB

ApplicationSettingsNotificationsVpnNetwork

Properties

Name Type Description Notes
connection str [optional]
exclude List[str] [optional]
include List[str] [optional]

Example

from okta.models.application_settings_notifications_vpn_network import ApplicationSettingsNotificationsVpnNetwork

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

# convert the object into a dict
application_settings_notifications_vpn_network_dict = application_settings_notifications_vpn_network_instance.to_dict()
# create an instance of ApplicationSettingsNotificationsVpnNetwork from a dict
application_settings_notifications_vpn_network_from_dict = ApplicationSettingsNotificationsVpnNetwork.from_dict(application_settings_notifications_vpn_network_dict)

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