GoogleCloudApigeeV1ScoreComponentRecommendation.fromJson constructor
GoogleCloudApigeeV1ScoreComponentRecommendation.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ScoreComponentRecommendation.fromJson(core.Map json_)
: this(
actions:
(json_['actions'] as core.List?)
?.map(
(value) =>
GoogleCloudApigeeV1ScoreComponentRecommendationAction.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
description: json_['description'] as core.String?,
impact: json_['impact'] as core.int?,
title: json_['title'] as core.String?,
);