GooglePrivacyDlpV2InspectionRule.fromJson constructor

GooglePrivacyDlpV2InspectionRule.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2InspectionRule.fromJson(core.Map json_)
  : this(
      adjustmentRule: json_.containsKey('adjustmentRule')
          ? GooglePrivacyDlpV2AdjustmentRule.fromJson(
              json_['adjustmentRule'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      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,
    );