GoogleCloudContactcenterinsightsV1QaAnswerAnswerSource.fromJson constructor
GoogleCloudContactcenterinsightsV1QaAnswerAnswerSource.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1QaAnswerAnswerSource.fromJson(
core.Map json_,
) : this(
answerValue: json_.containsKey('answerValue')
? GoogleCloudContactcenterinsightsV1QaAnswerAnswerValue.fromJson(
json_['answerValue'] as core.Map<core.String, core.dynamic>,
)
: null,
sourceType: json_['sourceType'] as core.String?,
);