GoogleCloudRetailV2BatchUpdateGenerativeQuestionConfigsResponse.fromJson constructor
GoogleCloudRetailV2BatchUpdateGenerativeQuestionConfigsResponse.fromJson(
- 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(),
);