GoogleCloudRetailV2BatchUpdateGenerativeQuestionConfigsResponse.fromJson constructor

GoogleCloudRetailV2BatchUpdateGenerativeQuestionConfigsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRetailV2BatchUpdateGenerativeQuestionConfigsResponse.fromJson(
    core.Map json_)
    : this(
        generativeQuestionConfigs:
            (json_['generativeQuestionConfigs'] as core.List?)
                ?.map((value) =>
                    GoogleCloudRetailV2GenerativeQuestionConfig.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList(),
      );