ResponsePolicyRulesUpdateResponse.fromJson constructor

ResponsePolicyRulesUpdateResponse.fromJson(
  1. Map json_
)

Implementation

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