SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig.fromJson constructor

SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig.fromJson(
  1. Map json_
)

Implementation

SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig.fromJson(core.Map json_)
    : this(
        enforceOnKeyName: json_.containsKey('enforceOnKeyName')
            ? json_['enforceOnKeyName'] as core.String
            : null,
        enforceOnKeyType: json_.containsKey('enforceOnKeyType')
            ? json_['enforceOnKeyType'] as core.String
            : null,
      );