GooglePrivacyDlpV2OutputStorageConfig.fromJson constructor

GooglePrivacyDlpV2OutputStorageConfig.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2OutputStorageConfig.fromJson(core.Map json_)
  : this(
      outputSchema: json_['outputSchema'] as core.String?,
      storagePath:
          json_.containsKey('storagePath')
              ? GooglePrivacyDlpV2CloudStoragePath.fromJson(
                json_['storagePath'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      table:
          json_.containsKey('table')
              ? GooglePrivacyDlpV2BigQueryTable.fromJson(
                json_['table'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );