GooglePrivacyDlpV2LargeCustomDictionaryConfig.fromJson constructor

GooglePrivacyDlpV2LargeCustomDictionaryConfig.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2LargeCustomDictionaryConfig.fromJson(core.Map json_)
  : this(
      bigQueryField: json_.containsKey('bigQueryField')
          ? GooglePrivacyDlpV2BigQueryField.fromJson(
              json_['bigQueryField'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      cloudStorageFileSet: json_.containsKey('cloudStorageFileSet')
          ? GooglePrivacyDlpV2CloudStorageFileSet.fromJson(
              json_['cloudStorageFileSet']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      outputPath: json_.containsKey('outputPath')
          ? GooglePrivacyDlpV2CloudStoragePath.fromJson(
              json_['outputPath'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );