Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.28 KB

File metadata and controls

30 lines (20 loc) · 1.28 KB

RateLimitWarningThresholdRequest

Properties

Name Type Description Notes
warning_threshold int The threshold value (percentage) of a rate limit that, when exceeded, triggers a warning notification. By default, this value is 90 for Workforce orgs and 60 for CIAM orgs.

Example

from okta.models.rate_limit_warning_threshold_request import RateLimitWarningThresholdRequest

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

# convert the object into a dict
rate_limit_warning_threshold_request_dict = rate_limit_warning_threshold_request_instance.to_dict()
# create an instance of RateLimitWarningThresholdRequest from a dict
rate_limit_warning_threshold_request_from_dict = RateLimitWarningThresholdRequest.from_dict(rate_limit_warning_threshold_request_dict)

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