You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
[optional]
Example
fromokta.models.rate_limit_warning_threshold_responseimportRateLimitWarningThresholdResponse# TODO update the JSON string belowjson="{}"# create an instance of RateLimitWarningThresholdResponse from a JSON stringrate_limit_warning_threshold_response_instance=RateLimitWarningThresholdResponse.from_json(json)
# print the JSON string representation of the objectprint(RateLimitWarningThresholdResponse.to_json())
# convert the object into a dictrate_limit_warning_threshold_response_dict=rate_limit_warning_threshold_response_instance.to_dict()
# create an instance of RateLimitWarningThresholdResponse from a dictrate_limit_warning_threshold_response_from_dict=RateLimitWarningThresholdResponse.from_dict(rate_limit_warning_threshold_response_dict)