com.google.cloud.dialogflow.v2.ClearSuggestionFeatureConfigOperationMetadataOrBuilder 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 ClearSuggestionFeatureConfigOperationMetadataOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.ClearSuggestionFeatureConfigOperationMetadata)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The resource name of the conversation profile. Format:
* `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`
*
*
* string conversation_profile = 1;
*
* @return The conversationProfile.
*/
java.lang.String getConversationProfile();
/**
*
*
*
* The resource name of the conversation profile. Format:
* `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`
*
*
* string conversation_profile = 1;
*
* @return The bytes for conversationProfile.
*/
com.google.protobuf.ByteString getConversationProfileBytes();
/**
*
*
*
* Required. The participant role to remove 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 remove 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 type of the suggestion feature to remove.
*
*
*
* .google.cloud.dialogflow.v2.SuggestionFeature.Type suggestion_feature_type = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The enum numeric value on the wire for suggestionFeatureType.
*/
int getSuggestionFeatureTypeValue();
/**
*
*
*
* Required. The type of the suggestion feature to remove.
*
*
*
* .google.cloud.dialogflow.v2.SuggestionFeature.Type suggestion_feature_type = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The suggestionFeatureType.
*/
com.google.cloud.dialogflow.v2.SuggestionFeature.Type getSuggestionFeatureType();
/**
*
*
*
* Timestamp whe the request was created. The time is measured on server side.
*
*
* .google.protobuf.Timestamp create_time = 4;
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Timestamp whe the request was created. The time is measured on server side.
*
*
* .google.protobuf.Timestamp create_time = 4;
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Timestamp whe the request was created. The time is measured on server side.
*
*
* .google.protobuf.Timestamp create_time = 4;
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
}