com.google.cloud.dialogflow.v2.AutomatedAgentReplyOrBuilder 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/participant.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.v2;
public interface AutomatedAgentReplyOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.AutomatedAgentReply)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Response of the Dialogflow
* [Sessions.DetectIntent][google.cloud.dialogflow.v2.Sessions.DetectIntent]
* call.
*
*
* .google.cloud.dialogflow.v2.DetectIntentResponse detect_intent_response = 1;
*
* @return Whether the detectIntentResponse field is set.
*/
boolean hasDetectIntentResponse();
/**
*
*
*
* Response of the Dialogflow
* [Sessions.DetectIntent][google.cloud.dialogflow.v2.Sessions.DetectIntent]
* call.
*
*
* .google.cloud.dialogflow.v2.DetectIntentResponse detect_intent_response = 1;
*
* @return The detectIntentResponse.
*/
com.google.cloud.dialogflow.v2.DetectIntentResponse getDetectIntentResponse();
/**
*
*
*
* Response of the Dialogflow
* [Sessions.DetectIntent][google.cloud.dialogflow.v2.Sessions.DetectIntent]
* call.
*
*
* .google.cloud.dialogflow.v2.DetectIntentResponse detect_intent_response = 1;
*/
com.google.cloud.dialogflow.v2.DetectIntentResponseOrBuilder getDetectIntentResponseOrBuilder();
/**
*
*
*
* AutomatedAgentReply type.
*
*
*
* .google.cloud.dialogflow.v2.AutomatedAgentReply.AutomatedAgentReplyType automated_agent_reply_type = 7;
*
*
* @return The enum numeric value on the wire for automatedAgentReplyType.
*/
int getAutomatedAgentReplyTypeValue();
/**
*
*
*
* AutomatedAgentReply type.
*
*
*
* .google.cloud.dialogflow.v2.AutomatedAgentReply.AutomatedAgentReplyType automated_agent_reply_type = 7;
*
*
* @return The automatedAgentReplyType.
*/
com.google.cloud.dialogflow.v2.AutomatedAgentReply.AutomatedAgentReplyType
getAutomatedAgentReplyType();
/**
*
*
*
* Indicates whether the partial automated agent reply is interruptible when a
* later reply message arrives. e.g. if the agent specified some music as
* partial response, it can be cancelled.
*
*
* bool allow_cancellation = 8;
*
* @return The allowCancellation.
*/
boolean getAllowCancellation();
/**
*
*
*
* The unique identifier of the current Dialogflow CX conversation page.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string cx_current_page = 11;
*
* @return The cxCurrentPage.
*/
java.lang.String getCxCurrentPage();
/**
*
*
*
* The unique identifier of the current Dialogflow CX conversation page.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string cx_current_page = 11;
*
* @return The bytes for cxCurrentPage.
*/
com.google.protobuf.ByteString getCxCurrentPageBytes();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy