GooglePrivacyDlpV2DeltaPresenceEstimationConfig.fromJson constructor
GooglePrivacyDlpV2DeltaPresenceEstimationConfig.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DeltaPresenceEstimationConfig.fromJson(core.Map json_)
: this(
auxiliaryTables:
(json_['auxiliaryTables'] as core.List?)
?.map(
(value) => GooglePrivacyDlpV2StatisticalTable.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
quasiIds:
(json_['quasiIds'] as core.List?)
?.map(
(value) => GooglePrivacyDlpV2QuasiId.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
regionCode: json_['regionCode'] as core.String?,
);