GoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestion.fromJson constructor
GoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestion.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestion.fromJson(
core.Map json_,
) : this(
agentAction: json_['agentAction'] as core.String?,
duplicateCheckResult: json_.containsKey('duplicateCheckResult')
? GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResult.fromJson(
json_['duplicateCheckResult']
as core.Map<core.String, core.dynamic>,
)
: null,
sources: json_.containsKey('sources')
? GoogleCloudDialogflowV2AgentCoachingSuggestionSources.fromJson(
json_['sources'] as core.Map<core.String, core.dynamic>,
)
: null,
);