GooglePrivacyDlpV2Result.fromJson constructor
GooglePrivacyDlpV2Result.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2Result.fromJson(core.Map json_)
: this(
hybridStats: json_.containsKey('hybridStats')
? GooglePrivacyDlpV2HybridInspectStatistics.fromJson(
json_['hybridStats'] as core.Map<core.String, core.dynamic>)
: null,
infoTypeStats: (json_['infoTypeStats'] as core.List?)
?.map((value) => GooglePrivacyDlpV2InfoTypeStats.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
numRowsProcessed: json_['numRowsProcessed'] as core.String?,
processedBytes: json_['processedBytes'] as core.String?,
totalEstimatedBytes: json_['totalEstimatedBytes'] as core.String?,
);