GoogleCloudAiplatformV1ModelMonitoringStatsAnomalies.fromJson constructor
GoogleCloudAiplatformV1ModelMonitoringStatsAnomalies.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1ModelMonitoringStatsAnomalies.fromJson(core.Map json_)
: this(
anomalyCount: json_['anomalyCount'] as core.int?,
deployedModelId: json_['deployedModelId'] as core.String?,
featureStats: (json_['featureStats'] as core.List?)
?.map((value) =>
GoogleCloudAiplatformV1ModelMonitoringStatsAnomaliesFeatureHistoricStatsAnomalies
.fromJson(value as core.Map<core.String, core.dynamic>))
.toList(),
objective: json_['objective'] as core.String?,
);