com.google.cloud.dialogflow.v2.DetectIntentResponseOrBuilder 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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/v2/session.proto
package com.google.cloud.dialogflow.v2;
public interface DetectIntentResponseOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.DetectIntentResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The unique identifier of the response. It can be used to
* locate a response in the training example set or for reporting issues.
*
*
* string response_id = 1;
*/
java.lang.String getResponseId();
/**
*
*
*
* The unique identifier of the response. It can be used to
* locate a response in the training example set or for reporting issues.
*
*
* string response_id = 1;
*/
com.google.protobuf.ByteString getResponseIdBytes();
/**
*
*
*
* The selected results of the conversational query or event processing.
* See `alternative_query_results` for additional potential results.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 2;
*/
boolean hasQueryResult();
/**
*
*
*
* The selected results of the conversational query or event processing.
* See `alternative_query_results` for additional potential results.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 2;
*/
com.google.cloud.dialogflow.v2.QueryResult getQueryResult();
/**
*
*
*
* The selected results of the conversational query or event processing.
* See `alternative_query_results` for additional potential results.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 2;
*/
com.google.cloud.dialogflow.v2.QueryResultOrBuilder getQueryResultOrBuilder();
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 3;
*/
boolean hasWebhookStatus();
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 3;
*/
com.google.rpc.Status getWebhookStatus();
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 3;
*/
com.google.rpc.StatusOrBuilder getWebhookStatusOrBuilder();
/**
*
*
*
* The audio data bytes encoded as specified in the request.
* Note: The output audio is generated based on the values of default platform
* text responses found in the `query_result.fulfillment_messages` field. If
* multiple default text responses exist, they will be concatenated when
* generating audio. If no default platform text responses exist, the
* generated audio content will be empty.
*
*
* bytes output_audio = 4;
*/
com.google.protobuf.ByteString getOutputAudio();
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
boolean hasOutputAudioConfig();
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
com.google.cloud.dialogflow.v2.OutputAudioConfig getOutputAudioConfig();
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
com.google.cloud.dialogflow.v2.OutputAudioConfigOrBuilder getOutputAudioConfigOrBuilder();
}