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
/*
* 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/session.proto
// Protobuf Java Version: 3.25.4
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;
*
* @return Whether the audioConfig field is set.
*/
boolean hasAudioConfig();
/**
*
*
*
* Instructs the speech recognizer how to process the speech audio.
*
*
* .google.cloud.dialogflow.v2.InputAudioConfig audio_config = 1;
*
* @return The audioConfig.
*/
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. Text length must not exceed
* 256 character for virtual agent interactions.
*
*
* .google.cloud.dialogflow.v2.TextInput text = 2;
*
* @return Whether the text field is set.
*/
boolean hasText();
/**
*
*
*
* The natural language text to be processed. Text length must not exceed
* 256 character for virtual agent interactions.
*
*
* .google.cloud.dialogflow.v2.TextInput text = 2;
*
* @return The text.
*/
com.google.cloud.dialogflow.v2.TextInput getText();
/**
*
*
*
* The natural language text to be processed. Text length must not exceed
* 256 character for virtual agent interactions.
*
*
* .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;
*
* @return Whether the event field is set.
*/
boolean hasEvent();
/**
*
*
*
* The event to be processed.
*
*
* .google.cloud.dialogflow.v2.EventInput event = 3;
*
* @return The event.
*/
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();
com.google.cloud.dialogflow.v2.QueryInput.InputCase getInputCase();
}