com.google.cloud.dialogflow.v2.QueryInputOrBuilder 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 QueryInputOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.QueryInput)
com.google.protobuf.MessageOrBuilder {
/**
*
* Instructs the speech recognizer how to process the speech audio.
*
*
* .google.cloud.dialogflow.v2.InputAudioConfig audio_config = 1;
*/
boolean hasAudioConfig();
/**
*
* Instructs the speech recognizer how to process the speech audio.
*
*
* .google.cloud.dialogflow.v2.InputAudioConfig audio_config = 1;
*/
com.google.cloud.dialogflow.v2.InputAudioConfig getAudioConfig();
/**
*
* Instructs the speech recognizer how to process the speech audio.
*
*
* .google.cloud.dialogflow.v2.InputAudioConfig audio_config = 1;
*/
com.google.cloud.dialogflow.v2.InputAudioConfigOrBuilder getAudioConfigOrBuilder();
/**
*
* The natural language text to be processed.
*
*
* .google.cloud.dialogflow.v2.TextInput text = 2;
*/
boolean hasText();
/**
*
* The natural language text to be processed.
*
*
* .google.cloud.dialogflow.v2.TextInput text = 2;
*/
com.google.cloud.dialogflow.v2.TextInput getText();
/**
*
* The natural language text to be processed.
*
*
* .google.cloud.dialogflow.v2.TextInput text = 2;
*/
com.google.cloud.dialogflow.v2.TextInputOrBuilder getTextOrBuilder();
/**
*
* The event to be processed.
*
*
* .google.cloud.dialogflow.v2.EventInput event = 3;
*/
boolean hasEvent();
/**
*
* The event to be processed.
*
*
* .google.cloud.dialogflow.v2.EventInput event = 3;
*/
com.google.cloud.dialogflow.v2.EventInput getEvent();
/**
*
* The event to be processed.
*
*
* .google.cloud.dialogflow.v2.EventInput event = 3;
*/
com.google.cloud.dialogflow.v2.EventInputOrBuilder getEventOrBuilder();
public com.google.cloud.dialogflow.v2.QueryInput.InputCase getInputCase();
}