GoogleCloudContactcenterinsightsV1QaQuestionTuningMetadata.fromJson constructor

GoogleCloudContactcenterinsightsV1QaQuestionTuningMetadata.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1QaQuestionTuningMetadata.fromJson(
  core.Map json_,
) : this(
      datasetValidationWarnings:
          (json_['datasetValidationWarnings'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      totalValidLabelCount: json_['totalValidLabelCount'] as core.String?,
      tuningError: json_['tuningError'] as core.String?,
    );