ResponsePolicyRulesUpdateResponse.fromJson constructor

ResponsePolicyRulesUpdateResponse.fromJson(
  1. Map json_
)

Implementation

ResponsePolicyRulesUpdateResponse.fromJson(core.Map json_)
  : this(
      responsePolicyRule:
          json_.containsKey('responsePolicyRule')
              ? ResponsePolicyRule.fromJson(
                json_['responsePolicyRule']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );