GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfig.fromJson constructor
GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfig.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfig.fromJson(
core.Map json_)
: this(
enableFeatureAttributes: json_.containsKey('enableFeatureAttributes')
? json_['enableFeatureAttributes'] as core.bool
: null,
explanationBaseline: json_.containsKey('explanationBaseline')
? GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaseline
.fromJson(json_['explanationBaseline']
as core.Map<core.String, core.dynamic>)
: null,
);