com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest 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;
/**
*
*
*
* The top-level message sent by the client to the
* `StreamingDetectIntent` method.
* Multiple request messages should be sent in order:
* 1. The first message must contain `session`, `query_input` plus optionally
* `query_params` and/or `single_utterance`. The message must not contain `input_audio`.
* 2. If `query_input` was set to a streaming input audio config,
* all subsequent messages must contain only `input_audio`.
* Otherwise, finish the request stream.
*
*
* Protobuf type {@code google.cloud.dialogflow.v2.StreamingDetectIntentRequest}
*/
public final class StreamingDetectIntentRequest extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2.StreamingDetectIntentRequest)
StreamingDetectIntentRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use StreamingDetectIntentRequest.newBuilder() to construct.
private StreamingDetectIntentRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StreamingDetectIntentRequest() {
session_ = "";
inputAudio_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private StreamingDetectIntentRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
java.lang.String s = input.readStringRequireUtf8();
session_ = s;
break;
}
case 18:
{
com.google.cloud.dialogflow.v2.QueryParameters.Builder subBuilder = null;
if (queryParams_ != null) {
subBuilder = queryParams_.toBuilder();
}
queryParams_ =
input.readMessage(
com.google.cloud.dialogflow.v2.QueryParameters.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(queryParams_);
queryParams_ = subBuilder.buildPartial();
}
break;
}
case 26:
{
com.google.cloud.dialogflow.v2.QueryInput.Builder subBuilder = null;
if (queryInput_ != null) {
subBuilder = queryInput_.toBuilder();
}
queryInput_ =
input.readMessage(
com.google.cloud.dialogflow.v2.QueryInput.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(queryInput_);
queryInput_ = subBuilder.buildPartial();
}
break;
}
case 32:
{
singleUtterance_ = input.readBool();
break;
}
case 42:
{
com.google.cloud.dialogflow.v2.OutputAudioConfig.Builder subBuilder = null;
if (outputAudioConfig_ != null) {
subBuilder = outputAudioConfig_.toBuilder();
}
outputAudioConfig_ =
input.readMessage(
com.google.cloud.dialogflow.v2.OutputAudioConfig.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(outputAudioConfig_);
outputAudioConfig_ = subBuilder.buildPartial();
}
break;
}
case 50:
{
inputAudio_ = input.readBytes();
break;
}
default:
{
if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2.SessionProto
.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2.SessionProto
.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest.class,
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest.Builder.class);
}
public static final int SESSION_FIELD_NUMBER = 1;
private volatile java.lang.Object session_;
/**
*
*
*
* Required. The name of the session the query is sent to.
* Format of the session name:
* `projects/<Project ID>/agent/sessions/<Session ID>`. It’s up to the API
* caller to choose an appropriate `Session ID`. It can be a random number or
* some type of user identifier (preferably hashed). The length of the session
* ID must not exceed 36 characters.
*
*
* string session = 1;
*/
public java.lang.String getSession() {
java.lang.Object ref = session_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
session_ = s;
return s;
}
}
/**
*
*
*
* Required. The name of the session the query is sent to.
* Format of the session name:
* `projects/<Project ID>/agent/sessions/<Session ID>`. It’s up to the API
* caller to choose an appropriate `Session ID`. It can be a random number or
* some type of user identifier (preferably hashed). The length of the session
* ID must not exceed 36 characters.
*
*
* string session = 1;
*/
public com.google.protobuf.ByteString getSessionBytes() {
java.lang.Object ref = session_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
session_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int QUERY_PARAMS_FIELD_NUMBER = 2;
private com.google.cloud.dialogflow.v2.QueryParameters queryParams_;
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public boolean hasQueryParams() {
return queryParams_ != null;
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public com.google.cloud.dialogflow.v2.QueryParameters getQueryParams() {
return queryParams_ == null
? com.google.cloud.dialogflow.v2.QueryParameters.getDefaultInstance()
: queryParams_;
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public com.google.cloud.dialogflow.v2.QueryParametersOrBuilder getQueryParamsOrBuilder() {
return getQueryParams();
}
public static final int QUERY_INPUT_FIELD_NUMBER = 3;
private com.google.cloud.dialogflow.v2.QueryInput queryInput_;
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public boolean hasQueryInput() {
return queryInput_ != null;
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public com.google.cloud.dialogflow.v2.QueryInput getQueryInput() {
return queryInput_ == null
? com.google.cloud.dialogflow.v2.QueryInput.getDefaultInstance()
: queryInput_;
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public com.google.cloud.dialogflow.v2.QueryInputOrBuilder getQueryInputOrBuilder() {
return getQueryInput();
}
public static final int SINGLE_UTTERANCE_FIELD_NUMBER = 4;
private boolean singleUtterance_;
/**
*
*
*
* Optional. If `false` (default), recognition does not cease until the
* client closes the stream.
* If `true`, the recognizer will detect a single spoken utterance in input
* audio. Recognition ceases when it detects the audio's voice has
* stopped or paused. In this case, once a detected intent is received, the
* client should close the stream and start a new request with a new stream as
* needed.
* This setting is ignored when `query_input` is a piece of text or an event.
*
*
* bool single_utterance = 4;
*/
public boolean getSingleUtterance() {
return singleUtterance_;
}
public static final int OUTPUT_AUDIO_CONFIG_FIELD_NUMBER = 5;
private com.google.cloud.dialogflow.v2.OutputAudioConfig outputAudioConfig_;
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public boolean hasOutputAudioConfig() {
return outputAudioConfig_ != null;
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public com.google.cloud.dialogflow.v2.OutputAudioConfig getOutputAudioConfig() {
return outputAudioConfig_ == null
? com.google.cloud.dialogflow.v2.OutputAudioConfig.getDefaultInstance()
: outputAudioConfig_;
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public com.google.cloud.dialogflow.v2.OutputAudioConfigOrBuilder getOutputAudioConfigOrBuilder() {
return getOutputAudioConfig();
}
public static final int INPUT_AUDIO_FIELD_NUMBER = 6;
private com.google.protobuf.ByteString inputAudio_;
/**
*
*
*
* Optional. The input audio content to be recognized. Must be sent if
* `query_input` was set to a streaming input audio config. The complete audio
* over all streaming messages must not exceed 1 minute.
*
*
* bytes input_audio = 6;
*/
public com.google.protobuf.ByteString getInputAudio() {
return inputAudio_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!getSessionBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, session_);
}
if (queryParams_ != null) {
output.writeMessage(2, getQueryParams());
}
if (queryInput_ != null) {
output.writeMessage(3, getQueryInput());
}
if (singleUtterance_ != false) {
output.writeBool(4, singleUtterance_);
}
if (outputAudioConfig_ != null) {
output.writeMessage(5, getOutputAudioConfig());
}
if (!inputAudio_.isEmpty()) {
output.writeBytes(6, inputAudio_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getSessionBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, session_);
}
if (queryParams_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getQueryParams());
}
if (queryInput_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getQueryInput());
}
if (singleUtterance_ != false) {
size += com.google.protobuf.CodedOutputStream.computeBoolSize(4, singleUtterance_);
}
if (outputAudioConfig_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getOutputAudioConfig());
}
if (!inputAudio_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream.computeBytesSize(6, inputAudio_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest other =
(com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest) obj;
if (!getSession().equals(other.getSession())) return false;
if (hasQueryParams() != other.hasQueryParams()) return false;
if (hasQueryParams()) {
if (!getQueryParams().equals(other.getQueryParams())) return false;
}
if (hasQueryInput() != other.hasQueryInput()) return false;
if (hasQueryInput()) {
if (!getQueryInput().equals(other.getQueryInput())) return false;
}
if (getSingleUtterance() != other.getSingleUtterance()) return false;
if (hasOutputAudioConfig() != other.hasOutputAudioConfig()) return false;
if (hasOutputAudioConfig()) {
if (!getOutputAudioConfig().equals(other.getOutputAudioConfig())) return false;
}
if (!getInputAudio().equals(other.getInputAudio())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + SESSION_FIELD_NUMBER;
hash = (53 * hash) + getSession().hashCode();
if (hasQueryParams()) {
hash = (37 * hash) + QUERY_PARAMS_FIELD_NUMBER;
hash = (53 * hash) + getQueryParams().hashCode();
}
if (hasQueryInput()) {
hash = (37 * hash) + QUERY_INPUT_FIELD_NUMBER;
hash = (53 * hash) + getQueryInput().hashCode();
}
hash = (37 * hash) + SINGLE_UTTERANCE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getSingleUtterance());
if (hasOutputAudioConfig()) {
hash = (37 * hash) + OUTPUT_AUDIO_CONFIG_FIELD_NUMBER;
hash = (53 * hash) + getOutputAudioConfig().hashCode();
}
hash = (37 * hash) + INPUT_AUDIO_FIELD_NUMBER;
hash = (53 * hash) + getInputAudio().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* The top-level message sent by the client to the
* `StreamingDetectIntent` method.
* Multiple request messages should be sent in order:
* 1. The first message must contain `session`, `query_input` plus optionally
* `query_params` and/or `single_utterance`. The message must not contain `input_audio`.
* 2. If `query_input` was set to a streaming input audio config,
* all subsequent messages must contain only `input_audio`.
* Otherwise, finish the request stream.
*
*
* Protobuf type {@code google.cloud.dialogflow.v2.StreamingDetectIntentRequest}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2.StreamingDetectIntentRequest)
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2.SessionProto
.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2.SessionProto
.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest.class,
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest.Builder.class);
}
// Construct using com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {}
}
@java.lang.Override
public Builder clear() {
super.clear();
session_ = "";
if (queryParamsBuilder_ == null) {
queryParams_ = null;
} else {
queryParams_ = null;
queryParamsBuilder_ = null;
}
if (queryInputBuilder_ == null) {
queryInput_ = null;
} else {
queryInput_ = null;
queryInputBuilder_ = null;
}
singleUtterance_ = false;
if (outputAudioConfigBuilder_ == null) {
outputAudioConfig_ = null;
} else {
outputAudioConfig_ = null;
outputAudioConfigBuilder_ = null;
}
inputAudio_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.v2.SessionProto
.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentRequest_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest getDefaultInstanceForType() {
return com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest build() {
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest buildPartial() {
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest result =
new com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest(this);
result.session_ = session_;
if (queryParamsBuilder_ == null) {
result.queryParams_ = queryParams_;
} else {
result.queryParams_ = queryParamsBuilder_.build();
}
if (queryInputBuilder_ == null) {
result.queryInput_ = queryInput_;
} else {
result.queryInput_ = queryInputBuilder_.build();
}
result.singleUtterance_ = singleUtterance_;
if (outputAudioConfigBuilder_ == null) {
result.outputAudioConfig_ = outputAudioConfig_;
} else {
result.outputAudioConfig_ = outputAudioConfigBuilder_.build();
}
result.inputAudio_ = inputAudio_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest) {
return mergeFrom((com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest other) {
if (other == com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest.getDefaultInstance())
return this;
if (!other.getSession().isEmpty()) {
session_ = other.session_;
onChanged();
}
if (other.hasQueryParams()) {
mergeQueryParams(other.getQueryParams());
}
if (other.hasQueryInput()) {
mergeQueryInput(other.getQueryInput());
}
if (other.getSingleUtterance() != false) {
setSingleUtterance(other.getSingleUtterance());
}
if (other.hasOutputAudioConfig()) {
mergeOutputAudioConfig(other.getOutputAudioConfig());
}
if (other.getInputAudio() != com.google.protobuf.ByteString.EMPTY) {
setInputAudio(other.getInputAudio());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage =
(com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object session_ = "";
/**
*
*
*
* Required. The name of the session the query is sent to.
* Format of the session name:
* `projects/<Project ID>/agent/sessions/<Session ID>`. It’s up to the API
* caller to choose an appropriate `Session ID`. It can be a random number or
* some type of user identifier (preferably hashed). The length of the session
* ID must not exceed 36 characters.
*
*
* string session = 1;
*/
public java.lang.String getSession() {
java.lang.Object ref = session_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
session_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The name of the session the query is sent to.
* Format of the session name:
* `projects/<Project ID>/agent/sessions/<Session ID>`. It’s up to the API
* caller to choose an appropriate `Session ID`. It can be a random number or
* some type of user identifier (preferably hashed). The length of the session
* ID must not exceed 36 characters.
*
*
* string session = 1;
*/
public com.google.protobuf.ByteString getSessionBytes() {
java.lang.Object ref = session_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
session_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The name of the session the query is sent to.
* Format of the session name:
* `projects/<Project ID>/agent/sessions/<Session ID>`. It’s up to the API
* caller to choose an appropriate `Session ID`. It can be a random number or
* some type of user identifier (preferably hashed). The length of the session
* ID must not exceed 36 characters.
*
*
* string session = 1;
*/
public Builder setSession(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
session_ = value;
onChanged();
return this;
}
/**
*
*
*
* Required. The name of the session the query is sent to.
* Format of the session name:
* `projects/<Project ID>/agent/sessions/<Session ID>`. It’s up to the API
* caller to choose an appropriate `Session ID`. It can be a random number or
* some type of user identifier (preferably hashed). The length of the session
* ID must not exceed 36 characters.
*
*
* string session = 1;
*/
public Builder clearSession() {
session_ = getDefaultInstance().getSession();
onChanged();
return this;
}
/**
*
*
*
* Required. The name of the session the query is sent to.
* Format of the session name:
* `projects/<Project ID>/agent/sessions/<Session ID>`. It’s up to the API
* caller to choose an appropriate `Session ID`. It can be a random number or
* some type of user identifier (preferably hashed). The length of the session
* ID must not exceed 36 characters.
*
*
* string session = 1;
*/
public Builder setSessionBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
session_ = value;
onChanged();
return this;
}
private com.google.cloud.dialogflow.v2.QueryParameters queryParams_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.QueryParameters,
com.google.cloud.dialogflow.v2.QueryParameters.Builder,
com.google.cloud.dialogflow.v2.QueryParametersOrBuilder>
queryParamsBuilder_;
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public boolean hasQueryParams() {
return queryParamsBuilder_ != null || queryParams_ != null;
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public com.google.cloud.dialogflow.v2.QueryParameters getQueryParams() {
if (queryParamsBuilder_ == null) {
return queryParams_ == null
? com.google.cloud.dialogflow.v2.QueryParameters.getDefaultInstance()
: queryParams_;
} else {
return queryParamsBuilder_.getMessage();
}
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public Builder setQueryParams(com.google.cloud.dialogflow.v2.QueryParameters value) {
if (queryParamsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
queryParams_ = value;
onChanged();
} else {
queryParamsBuilder_.setMessage(value);
}
return this;
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public Builder setQueryParams(
com.google.cloud.dialogflow.v2.QueryParameters.Builder builderForValue) {
if (queryParamsBuilder_ == null) {
queryParams_ = builderForValue.build();
onChanged();
} else {
queryParamsBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public Builder mergeQueryParams(com.google.cloud.dialogflow.v2.QueryParameters value) {
if (queryParamsBuilder_ == null) {
if (queryParams_ != null) {
queryParams_ =
com.google.cloud.dialogflow.v2.QueryParameters.newBuilder(queryParams_)
.mergeFrom(value)
.buildPartial();
} else {
queryParams_ = value;
}
onChanged();
} else {
queryParamsBuilder_.mergeFrom(value);
}
return this;
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public Builder clearQueryParams() {
if (queryParamsBuilder_ == null) {
queryParams_ = null;
onChanged();
} else {
queryParams_ = null;
queryParamsBuilder_ = null;
}
return this;
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public com.google.cloud.dialogflow.v2.QueryParameters.Builder getQueryParamsBuilder() {
onChanged();
return getQueryParamsFieldBuilder().getBuilder();
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
public com.google.cloud.dialogflow.v2.QueryParametersOrBuilder getQueryParamsOrBuilder() {
if (queryParamsBuilder_ != null) {
return queryParamsBuilder_.getMessageOrBuilder();
} else {
return queryParams_ == null
? com.google.cloud.dialogflow.v2.QueryParameters.getDefaultInstance()
: queryParams_;
}
}
/**
*
*
*
* Optional. The parameters of this query.
*
*
* .google.cloud.dialogflow.v2.QueryParameters query_params = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.QueryParameters,
com.google.cloud.dialogflow.v2.QueryParameters.Builder,
com.google.cloud.dialogflow.v2.QueryParametersOrBuilder>
getQueryParamsFieldBuilder() {
if (queryParamsBuilder_ == null) {
queryParamsBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.QueryParameters,
com.google.cloud.dialogflow.v2.QueryParameters.Builder,
com.google.cloud.dialogflow.v2.QueryParametersOrBuilder>(
getQueryParams(), getParentForChildren(), isClean());
queryParams_ = null;
}
return queryParamsBuilder_;
}
private com.google.cloud.dialogflow.v2.QueryInput queryInput_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.QueryInput,
com.google.cloud.dialogflow.v2.QueryInput.Builder,
com.google.cloud.dialogflow.v2.QueryInputOrBuilder>
queryInputBuilder_;
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public boolean hasQueryInput() {
return queryInputBuilder_ != null || queryInput_ != null;
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public com.google.cloud.dialogflow.v2.QueryInput getQueryInput() {
if (queryInputBuilder_ == null) {
return queryInput_ == null
? com.google.cloud.dialogflow.v2.QueryInput.getDefaultInstance()
: queryInput_;
} else {
return queryInputBuilder_.getMessage();
}
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public Builder setQueryInput(com.google.cloud.dialogflow.v2.QueryInput value) {
if (queryInputBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
queryInput_ = value;
onChanged();
} else {
queryInputBuilder_.setMessage(value);
}
return this;
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public Builder setQueryInput(
com.google.cloud.dialogflow.v2.QueryInput.Builder builderForValue) {
if (queryInputBuilder_ == null) {
queryInput_ = builderForValue.build();
onChanged();
} else {
queryInputBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public Builder mergeQueryInput(com.google.cloud.dialogflow.v2.QueryInput value) {
if (queryInputBuilder_ == null) {
if (queryInput_ != null) {
queryInput_ =
com.google.cloud.dialogflow.v2.QueryInput.newBuilder(queryInput_)
.mergeFrom(value)
.buildPartial();
} else {
queryInput_ = value;
}
onChanged();
} else {
queryInputBuilder_.mergeFrom(value);
}
return this;
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public Builder clearQueryInput() {
if (queryInputBuilder_ == null) {
queryInput_ = null;
onChanged();
} else {
queryInput_ = null;
queryInputBuilder_ = null;
}
return this;
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public com.google.cloud.dialogflow.v2.QueryInput.Builder getQueryInputBuilder() {
onChanged();
return getQueryInputFieldBuilder().getBuilder();
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
public com.google.cloud.dialogflow.v2.QueryInputOrBuilder getQueryInputOrBuilder() {
if (queryInputBuilder_ != null) {
return queryInputBuilder_.getMessageOrBuilder();
} else {
return queryInput_ == null
? com.google.cloud.dialogflow.v2.QueryInput.getDefaultInstance()
: queryInput_;
}
}
/**
*
*
*
* Required. The input specification. It can be set to:
* 1. an audio config which instructs the speech recognizer how to process
* the speech audio,
* 2. a conversational query in the form of text, or
* 3. an event that specifies which intent to trigger.
*
*
* .google.cloud.dialogflow.v2.QueryInput query_input = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.QueryInput,
com.google.cloud.dialogflow.v2.QueryInput.Builder,
com.google.cloud.dialogflow.v2.QueryInputOrBuilder>
getQueryInputFieldBuilder() {
if (queryInputBuilder_ == null) {
queryInputBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.QueryInput,
com.google.cloud.dialogflow.v2.QueryInput.Builder,
com.google.cloud.dialogflow.v2.QueryInputOrBuilder>(
getQueryInput(), getParentForChildren(), isClean());
queryInput_ = null;
}
return queryInputBuilder_;
}
private boolean singleUtterance_;
/**
*
*
*
* Optional. If `false` (default), recognition does not cease until the
* client closes the stream.
* If `true`, the recognizer will detect a single spoken utterance in input
* audio. Recognition ceases when it detects the audio's voice has
* stopped or paused. In this case, once a detected intent is received, the
* client should close the stream and start a new request with a new stream as
* needed.
* This setting is ignored when `query_input` is a piece of text or an event.
*
*
* bool single_utterance = 4;
*/
public boolean getSingleUtterance() {
return singleUtterance_;
}
/**
*
*
*
* Optional. If `false` (default), recognition does not cease until the
* client closes the stream.
* If `true`, the recognizer will detect a single spoken utterance in input
* audio. Recognition ceases when it detects the audio's voice has
* stopped or paused. In this case, once a detected intent is received, the
* client should close the stream and start a new request with a new stream as
* needed.
* This setting is ignored when `query_input` is a piece of text or an event.
*
*
* bool single_utterance = 4;
*/
public Builder setSingleUtterance(boolean value) {
singleUtterance_ = value;
onChanged();
return this;
}
/**
*
*
*
* Optional. If `false` (default), recognition does not cease until the
* client closes the stream.
* If `true`, the recognizer will detect a single spoken utterance in input
* audio. Recognition ceases when it detects the audio's voice has
* stopped or paused. In this case, once a detected intent is received, the
* client should close the stream and start a new request with a new stream as
* needed.
* This setting is ignored when `query_input` is a piece of text or an event.
*
*
* bool single_utterance = 4;
*/
public Builder clearSingleUtterance() {
singleUtterance_ = false;
onChanged();
return this;
}
private com.google.cloud.dialogflow.v2.OutputAudioConfig outputAudioConfig_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.OutputAudioConfig,
com.google.cloud.dialogflow.v2.OutputAudioConfig.Builder,
com.google.cloud.dialogflow.v2.OutputAudioConfigOrBuilder>
outputAudioConfigBuilder_;
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public boolean hasOutputAudioConfig() {
return outputAudioConfigBuilder_ != null || outputAudioConfig_ != null;
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public com.google.cloud.dialogflow.v2.OutputAudioConfig getOutputAudioConfig() {
if (outputAudioConfigBuilder_ == null) {
return outputAudioConfig_ == null
? com.google.cloud.dialogflow.v2.OutputAudioConfig.getDefaultInstance()
: outputAudioConfig_;
} else {
return outputAudioConfigBuilder_.getMessage();
}
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public Builder setOutputAudioConfig(com.google.cloud.dialogflow.v2.OutputAudioConfig value) {
if (outputAudioConfigBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
outputAudioConfig_ = value;
onChanged();
} else {
outputAudioConfigBuilder_.setMessage(value);
}
return this;
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public Builder setOutputAudioConfig(
com.google.cloud.dialogflow.v2.OutputAudioConfig.Builder builderForValue) {
if (outputAudioConfigBuilder_ == null) {
outputAudioConfig_ = builderForValue.build();
onChanged();
} else {
outputAudioConfigBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public Builder mergeOutputAudioConfig(com.google.cloud.dialogflow.v2.OutputAudioConfig value) {
if (outputAudioConfigBuilder_ == null) {
if (outputAudioConfig_ != null) {
outputAudioConfig_ =
com.google.cloud.dialogflow.v2.OutputAudioConfig.newBuilder(outputAudioConfig_)
.mergeFrom(value)
.buildPartial();
} else {
outputAudioConfig_ = value;
}
onChanged();
} else {
outputAudioConfigBuilder_.mergeFrom(value);
}
return this;
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public Builder clearOutputAudioConfig() {
if (outputAudioConfigBuilder_ == null) {
outputAudioConfig_ = null;
onChanged();
} else {
outputAudioConfig_ = null;
outputAudioConfigBuilder_ = null;
}
return this;
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public com.google.cloud.dialogflow.v2.OutputAudioConfig.Builder getOutputAudioConfigBuilder() {
onChanged();
return getOutputAudioConfigFieldBuilder().getBuilder();
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
public com.google.cloud.dialogflow.v2.OutputAudioConfigOrBuilder
getOutputAudioConfigOrBuilder() {
if (outputAudioConfigBuilder_ != null) {
return outputAudioConfigBuilder_.getMessageOrBuilder();
} else {
return outputAudioConfig_ == null
? com.google.cloud.dialogflow.v2.OutputAudioConfig.getDefaultInstance()
: outputAudioConfig_;
}
}
/**
*
*
*
* Optional. Instructs the speech synthesizer how to generate the output
* audio. If this field is not set and agent-level speech synthesizer is not
* configured, no output audio is generated.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 5;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.OutputAudioConfig,
com.google.cloud.dialogflow.v2.OutputAudioConfig.Builder,
com.google.cloud.dialogflow.v2.OutputAudioConfigOrBuilder>
getOutputAudioConfigFieldBuilder() {
if (outputAudioConfigBuilder_ == null) {
outputAudioConfigBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.OutputAudioConfig,
com.google.cloud.dialogflow.v2.OutputAudioConfig.Builder,
com.google.cloud.dialogflow.v2.OutputAudioConfigOrBuilder>(
getOutputAudioConfig(), getParentForChildren(), isClean());
outputAudioConfig_ = null;
}
return outputAudioConfigBuilder_;
}
private com.google.protobuf.ByteString inputAudio_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* Optional. The input audio content to be recognized. Must be sent if
* `query_input` was set to a streaming input audio config. The complete audio
* over all streaming messages must not exceed 1 minute.
*
*
* bytes input_audio = 6;
*/
public com.google.protobuf.ByteString getInputAudio() {
return inputAudio_;
}
/**
*
*
*
* Optional. The input audio content to be recognized. Must be sent if
* `query_input` was set to a streaming input audio config. The complete audio
* over all streaming messages must not exceed 1 minute.
*
*
* bytes input_audio = 6;
*/
public Builder setInputAudio(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
inputAudio_ = value;
onChanged();
return this;
}
/**
*
*
*
* Optional. The input audio content to be recognized. Must be sent if
* `query_input` was set to a streaming input audio config. The complete audio
* over all streaming messages must not exceed 1 minute.
*
*
* bytes input_audio = 6;
*/
public Builder clearInputAudio() {
inputAudio_ = getDefaultInstance().getInputAudio();
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.dialogflow.v2.StreamingDetectIntentRequest)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2.StreamingDetectIntentRequest)
private static final com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest();
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StreamingDetectIntentRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StreamingDetectIntentRequest(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.StreamingDetectIntentRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}