GooglePrivacyDlpV2AdjustByMatchingInfoTypes.fromJson constructor

GooglePrivacyDlpV2AdjustByMatchingInfoTypes.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2AdjustByMatchingInfoTypes.fromJson(core.Map json_)
  : this(
      infoTypes: (json_['infoTypes'] as core.List?)
          ?.map(
            (value) => GooglePrivacyDlpV2InfoType.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      matchingType: json_['matchingType'] as core.String?,
      minLikelihood: json_['minLikelihood'] as core.String?,
    );