GoogleCloudRetailV2UpdateGenerativeQuestionConfigRequest.fromJson constructor
GoogleCloudRetailV2UpdateGenerativeQuestionConfigRequest.fromJson(
- Map json_
Implementation
GoogleCloudRetailV2UpdateGenerativeQuestionConfigRequest.fromJson(
core.Map json_)
: this(
generativeQuestionConfig:
json_.containsKey('generativeQuestionConfig')
? GoogleCloudRetailV2GenerativeQuestionConfig.fromJson(
json_['generativeQuestionConfig']
as core.Map<core.String, core.dynamic>)
: null,
updateMask: json_['updateMask'] as core.String?,
);