All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.dialogflow.cx.v3beta1.QueryInputOrBuilder Maven / Gradle / Ivy

The newest version!
/*
 * 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/cx/v3beta1/session.proto

// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;

public interface QueryInputOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3beta1.QueryInput)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * The natural language text to be processed.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.TextInput text = 2; * * @return Whether the text field is set. */ boolean hasText(); /** * * *
   * The natural language text to be processed.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.TextInput text = 2; * * @return The text. */ com.google.cloud.dialogflow.cx.v3beta1.TextInput getText(); /** * * *
   * The natural language text to be processed.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.TextInput text = 2; */ com.google.cloud.dialogflow.cx.v3beta1.TextInputOrBuilder getTextOrBuilder(); /** * * *
   * The intent to be triggered.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.IntentInput intent = 3; * * @return Whether the intent field is set. */ boolean hasIntent(); /** * * *
   * The intent to be triggered.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.IntentInput intent = 3; * * @return The intent. */ com.google.cloud.dialogflow.cx.v3beta1.IntentInput getIntent(); /** * * *
   * The intent to be triggered.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.IntentInput intent = 3; */ com.google.cloud.dialogflow.cx.v3beta1.IntentInputOrBuilder getIntentOrBuilder(); /** * * *
   * The natural language speech audio to be processed.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.AudioInput audio = 5; * * @return Whether the audio field is set. */ boolean hasAudio(); /** * * *
   * The natural language speech audio to be processed.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.AudioInput audio = 5; * * @return The audio. */ com.google.cloud.dialogflow.cx.v3beta1.AudioInput getAudio(); /** * * *
   * The natural language speech audio to be processed.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.AudioInput audio = 5; */ com.google.cloud.dialogflow.cx.v3beta1.AudioInputOrBuilder getAudioOrBuilder(); /** * * *
   * The event to be triggered.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.EventInput event = 6; * * @return Whether the event field is set. */ boolean hasEvent(); /** * * *
   * The event to be triggered.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.EventInput event = 6; * * @return The event. */ com.google.cloud.dialogflow.cx.v3beta1.EventInput getEvent(); /** * * *
   * The event to be triggered.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.EventInput event = 6; */ com.google.cloud.dialogflow.cx.v3beta1.EventInputOrBuilder getEventOrBuilder(); /** * * *
   * The DTMF event to be handled.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.DtmfInput dtmf = 7; * * @return Whether the dtmf field is set. */ boolean hasDtmf(); /** * * *
   * The DTMF event to be handled.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.DtmfInput dtmf = 7; * * @return The dtmf. */ com.google.cloud.dialogflow.cx.v3beta1.DtmfInput getDtmf(); /** * * *
   * The DTMF event to be handled.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.DtmfInput dtmf = 7; */ com.google.cloud.dialogflow.cx.v3beta1.DtmfInputOrBuilder getDtmfOrBuilder(); /** * * *
   * The results of a tool executed by the client.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.ToolCallResult tool_call_result = 11; * * @return Whether the toolCallResult field is set. */ boolean hasToolCallResult(); /** * * *
   * The results of a tool executed by the client.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.ToolCallResult tool_call_result = 11; * * @return The toolCallResult. */ com.google.cloud.dialogflow.cx.v3beta1.ToolCallResult getToolCallResult(); /** * * *
   * The results of a tool executed by the client.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.ToolCallResult tool_call_result = 11; */ com.google.cloud.dialogflow.cx.v3beta1.ToolCallResultOrBuilder getToolCallResultOrBuilder(); /** * * *
   * Required. The language of the input. See [Language
   * Support](https://cloud.google.com/dialogflow/cx/docs/reference/language)
   * for a list of the currently supported language codes. Note that queries in
   * the same session do not necessarily need to specify the same language.
   * 
* * string language_code = 4 [(.google.api.field_behavior) = REQUIRED]; * * @return The languageCode. */ java.lang.String getLanguageCode(); /** * * *
   * Required. The language of the input. See [Language
   * Support](https://cloud.google.com/dialogflow/cx/docs/reference/language)
   * for a list of the currently supported language codes. Note that queries in
   * the same session do not necessarily need to specify the same language.
   * 
* * string language_code = 4 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for languageCode. */ com.google.protobuf.ByteString getLanguageCodeBytes(); com.google.cloud.dialogflow.cx.v3beta1.QueryInput.InputCase getInputCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy