GoogleCloudContactcenterinsightsV1ListQaQuestionsResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListQaQuestionsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1ListQaQuestionsResponse.fromJson(
  core.Map json_,
) : this(
      nextPageToken: json_['nextPageToken'] as core.String?,
      qaQuestions: (json_['qaQuestions'] as core.List?)
          ?.map(
            (value) => GoogleCloudContactcenterinsightsV1QaQuestion.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );