SecurityPolicyRuleRateLimitOptionsThreshold.fromJson constructor

SecurityPolicyRuleRateLimitOptionsThreshold.fromJson(
  1. Map json_
)

Implementation

SecurityPolicyRuleRateLimitOptionsThreshold.fromJson(core.Map json_)
    : this(
        count: json_.containsKey('count') ? json_['count'] as core.int : null,
        intervalSec: json_.containsKey('intervalSec')
            ? json_['intervalSec'] as core.int
            : null,
      );