Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.04 KB

File metadata and controls

30 lines (20 loc) · 1.04 KB

RateLimitAdminNotifications

Properties

Name Type Description Notes
notifications_enabled bool

Example

from okta.models.rate_limit_admin_notifications import RateLimitAdminNotifications

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

# convert the object into a dict
rate_limit_admin_notifications_dict = rate_limit_admin_notifications_instance.to_dict()
# create an instance of RateLimitAdminNotifications from a dict
rate_limit_admin_notifications_from_dict = RateLimitAdminNotifications.from_dict(rate_limit_admin_notifications_dict)

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