GooglePrivacyDlpV2InspectionRule.fromJson constructor

GooglePrivacyDlpV2InspectionRule.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2InspectionRule.fromJson(core.Map json_)
  : this(
      exclusionRule:
          json_.containsKey('exclusionRule')
              ? GooglePrivacyDlpV2ExclusionRule.fromJson(
                json_['exclusionRule'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      hotwordRule:
          json_.containsKey('hotwordRule')
              ? GooglePrivacyDlpV2HotwordRule.fromJson(
                json_['hotwordRule'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );