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