GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest.fromJson constructor
GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest.fromJson(
core.Map json_,
) : this(
deployedModelId: json_['deployedModelId'] as core.String?,
endTime: json_['endTime'] as core.String?,
featureDisplayName: json_['featureDisplayName'] as core.String?,
objectives:
(json_['objectives'] as core.List?)
?.map(
(value) =>
GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequestStatsAnomaliesObjective.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
pageSize: json_['pageSize'] as core.int?,
pageToken: json_['pageToken'] as core.String?,
startTime: json_['startTime'] as core.String?,
);