GooglePrivacyDlpV2FindingLimits.fromJson constructor

GooglePrivacyDlpV2FindingLimits.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2FindingLimits.fromJson(core.Map json_)
  : this(
      maxFindingsPerInfoType: (json_['maxFindingsPerInfoType'] as core.List?)
          ?.map(
            (value) => GooglePrivacyDlpV2InfoTypeLimit.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      maxFindingsPerItem: json_['maxFindingsPerItem'] as core.int?,
      maxFindingsPerRequest: json_['maxFindingsPerRequest'] as core.int?,
    );