GoogleCloudDataplexV1DataDiscoveryResultScanStatistics.fromJson constructor

GoogleCloudDataplexV1DataDiscoveryResultScanStatistics.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1DataDiscoveryResultScanStatistics.fromJson(
  core.Map json_,
) : this(
      dataProcessedBytes: json_['dataProcessedBytes'] as core.String?,
      filesExcluded: json_['filesExcluded'] as core.int?,
      filesetsCreated: json_['filesetsCreated'] as core.int?,
      filesetsDeleted: json_['filesetsDeleted'] as core.int?,
      filesetsUpdated: json_['filesetsUpdated'] as core.int?,
      scannedFileCount: json_['scannedFileCount'] as core.int?,
      tablesCreated: json_['tablesCreated'] as core.int?,
      tablesDeleted: json_['tablesDeleted'] as core.int?,
      tablesUpdated: json_['tablesUpdated'] as core.int?,
    );