GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig.fromJson constructor

GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfig.fromJson(
  core.Map json_,
) : this(
      include: json_.containsKey('include')
          ? GoogleCloudApigeeV1SecurityProfileV2ProfileAssessmentConfigApiHubGatewayTypeArray.fromJson(
              json_['include'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      weight: json_['weight'] as core.String?,
    );