GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig.fromJson constructor

GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig.fromJson(
    core.Map json_)
    : this(
        featureConfigs: json_.containsKey('featureConfigs')
            ? (json_['featureConfigs'] as core.List)
                .map((value) =>
                    GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfig
                        .fromJson(
                            value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        groupSuggestionResponses:
            json_.containsKey('groupSuggestionResponses')
                ? json_['groupSuggestionResponses'] as core.bool
                : null,
      );