GooglePrivacyDlpV2ProjectDataProfile.fromJson constructor

GooglePrivacyDlpV2ProjectDataProfile.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2ProjectDataProfile.fromJson(core.Map json_)
    : this(
        dataRiskLevel: json_.containsKey('dataRiskLevel')
            ? GooglePrivacyDlpV2DataRiskLevel.fromJson(
                json_['dataRiskLevel'] as core.Map<core.String, core.dynamic>)
            : null,
        fileStoreDataProfileCount:
            json_['fileStoreDataProfileCount'] as core.String?,
        name: json_['name'] as core.String?,
        profileLastGenerated: json_['profileLastGenerated'] as core.String?,
        profileStatus: json_.containsKey('profileStatus')
            ? GooglePrivacyDlpV2ProfileStatus.fromJson(
                json_['profileStatus'] as core.Map<core.String, core.dynamic>)
            : null,
        projectId: json_['projectId'] as core.String?,
        sensitivityScore: json_.containsKey('sensitivityScore')
            ? GooglePrivacyDlpV2SensitivityScore.fromJson(
                json_['sensitivityScore']
                    as core.Map<core.String, core.dynamic>)
            : null,
        tableDataProfileCount: json_['tableDataProfileCount'] as core.String?,
      );