com.google.cloud.dialogflow.v2.SetSuggestionFeatureConfigRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/v2/conversation_profile.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dialogflow.v2;
public interface SetSuggestionFeatureConfigRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.SetSuggestionFeatureConfigRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The Conversation Profile to add or update the suggestion feature
* config. Format: `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`.
*
*
* string conversation_profile = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The conversationProfile.
*/
java.lang.String getConversationProfile();
/**
*
*
*
* Required. The Conversation Profile to add or update the suggestion feature
* config. Format: `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`.
*
*
* string conversation_profile = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for conversationProfile.
*/
com.google.protobuf.ByteString getConversationProfileBytes();
/**
*
*
*
* Required. The participant role to add or update the suggestion feature
* config. Only HUMAN_AGENT or END_USER can be used.
*
*
*
* .google.cloud.dialogflow.v2.Participant.Role participant_role = 2 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The enum numeric value on the wire for participantRole.
*/
int getParticipantRoleValue();
/**
*
*
*
* Required. The participant role to add or update the suggestion feature
* config. Only HUMAN_AGENT or END_USER can be used.
*
*
*
* .google.cloud.dialogflow.v2.Participant.Role participant_role = 2 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The participantRole.
*/
com.google.cloud.dialogflow.v2.Participant.Role getParticipantRole();
/**
*
*
*
* Required. The suggestion feature config to add or update.
*
*
*
* .google.cloud.dialogflow.v2.HumanAgentAssistantConfig.SuggestionFeatureConfig suggestion_feature_config = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the suggestionFeatureConfig field is set.
*/
boolean hasSuggestionFeatureConfig();
/**
*
*
*
* Required. The suggestion feature config to add or update.
*
*
*
* .google.cloud.dialogflow.v2.HumanAgentAssistantConfig.SuggestionFeatureConfig suggestion_feature_config = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The suggestionFeatureConfig.
*/
com.google.cloud.dialogflow.v2.HumanAgentAssistantConfig.SuggestionFeatureConfig
getSuggestionFeatureConfig();
/**
*
*
*
* Required. The suggestion feature config to add or update.
*
*
*
* .google.cloud.dialogflow.v2.HumanAgentAssistantConfig.SuggestionFeatureConfig suggestion_feature_config = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
com.google.cloud.dialogflow.v2.HumanAgentAssistantConfig.SuggestionFeatureConfigOrBuilder
getSuggestionFeatureConfigOrBuilder();
}