GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySource.fromJson constructor

GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySource.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySource.fromJson(
  core.Map json_,
) : this(
      agent: json_['agent'] as core.String?,
      humanAgentSideConfig: json_.containsKey('humanAgentSideConfig')
          ? GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySourceHumanAgentSideConfig.fromJson(
              json_['humanAgentSideConfig']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );