GoogleCloudApigeeV1SecurityAssessmentResultScoringResultAssessmentRecommendationRecommendation.fromJson constructor

GoogleCloudApigeeV1SecurityAssessmentResultScoringResultAssessmentRecommendationRecommendation.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1SecurityAssessmentResultScoringResultAssessmentRecommendationRecommendation.fromJson(
  core.Map json_,
) : this(
      description: json_['description'] as core.String?,
      link: json_.containsKey('link')
          ? GoogleCloudApigeeV1SecurityAssessmentResultScoringResultAssessmentRecommendationRecommendationLink.fromJson(
              json_['link'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );