GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket.fromJson constructor

GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket.fromJson(
    core.Map json_)
    : this(
        bucketSize: json_['bucketSize'] as core.String?,
        bucketValueCount: json_['bucketValueCount'] as core.String?,
        bucketValues: (json_['bucketValues'] as core.List?)
            ?.map((value) =>
                GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues
                    .fromJson(value as core.Map<core.String, core.dynamic>))
            .toList(),
        maxProbability: (json_['maxProbability'] as core.num?)?.toDouble(),
        minProbability: (json_['minProbability'] as core.num?)?.toDouble(),
      );