com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse 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;
/**
*
*
*
* The top-level message returned from the
* `StreamingDetectIntent` method.
*
* Multiple response messages can be returned in order:
*
* 1. If the `StreamingDetectIntentRequest.input_audio` field was
* set, the `recognition_result` field is populated for one
* or more messages.
* See the
* [StreamingRecognitionResult][google.cloud.dialogflow.v2.StreamingRecognitionResult]
* message for details about the result message sequence.
*
* 2. The next message contains `response_id`, `query_result`
* and optionally `webhook_status` if a WebHook was called.
*
*
* Protobuf type {@code google.cloud.dialogflow.v2.StreamingDetectIntentResponse}
*/
public final class StreamingDetectIntentResponse extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2.StreamingDetectIntentResponse)
StreamingDetectIntentResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use StreamingDetectIntentResponse.newBuilder() to construct.
private StreamingDetectIntentResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StreamingDetectIntentResponse() {
responseId_ = "";
outputAudio_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new StreamingDetectIntentResponse();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2.SessionProto
.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2.SessionProto
.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.class,
com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.Builder.class);
}
private int bitField0_;
public static final int RESPONSE_ID_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object responseId_ = "";
/**
*
*
*
* 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;
*
* @return The responseId.
*/
@java.lang.Override
public java.lang.String getResponseId() {
java.lang.Object ref = responseId_;
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();
responseId_ = s;
return s;
}
}
/**
*
*
*
* 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;
*
* @return The bytes for responseId.
*/
@java.lang.Override
public com.google.protobuf.ByteString getResponseIdBytes() {
java.lang.Object ref = responseId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
responseId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int RECOGNITION_RESULT_FIELD_NUMBER = 2;
private com.google.cloud.dialogflow.v2.StreamingRecognitionResult recognitionResult_;
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*
* @return Whether the recognitionResult field is set.
*/
@java.lang.Override
public boolean hasRecognitionResult() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*
* @return The recognitionResult.
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2.StreamingRecognitionResult getRecognitionResult() {
return recognitionResult_ == null
? com.google.cloud.dialogflow.v2.StreamingRecognitionResult.getDefaultInstance()
: recognitionResult_;
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder
getRecognitionResultOrBuilder() {
return recognitionResult_ == null
? com.google.cloud.dialogflow.v2.StreamingRecognitionResult.getDefaultInstance()
: recognitionResult_;
}
public static final int QUERY_RESULT_FIELD_NUMBER = 3;
private com.google.cloud.dialogflow.v2.QueryResult queryResult_;
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*
* @return Whether the queryResult field is set.
*/
@java.lang.Override
public boolean hasQueryResult() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*
* @return The queryResult.
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2.QueryResult getQueryResult() {
return queryResult_ == null
? com.google.cloud.dialogflow.v2.QueryResult.getDefaultInstance()
: queryResult_;
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2.QueryResultOrBuilder getQueryResultOrBuilder() {
return queryResult_ == null
? com.google.cloud.dialogflow.v2.QueryResult.getDefaultInstance()
: queryResult_;
}
public static final int WEBHOOK_STATUS_FIELD_NUMBER = 4;
private com.google.rpc.Status webhookStatus_;
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*
* @return Whether the webhookStatus field is set.
*/
@java.lang.Override
public boolean hasWebhookStatus() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*
* @return The webhookStatus.
*/
@java.lang.Override
public com.google.rpc.Status getWebhookStatus() {
return webhookStatus_ == null ? com.google.rpc.Status.getDefaultInstance() : webhookStatus_;
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
@java.lang.Override
public com.google.rpc.StatusOrBuilder getWebhookStatusOrBuilder() {
return webhookStatus_ == null ? com.google.rpc.Status.getDefaultInstance() : webhookStatus_;
}
public static final int OUTPUT_AUDIO_FIELD_NUMBER = 5;
private com.google.protobuf.ByteString outputAudio_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* 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.
*
* In some scenarios, multiple output audio fields may be present in the
* response structure. In these cases, only the top-most-level audio output
* has content.
*
*
* bytes output_audio = 5;
*
* @return The outputAudio.
*/
@java.lang.Override
public com.google.protobuf.ByteString getOutputAudio() {
return outputAudio_;
}
public static final int OUTPUT_AUDIO_CONFIG_FIELD_NUMBER = 6;
private com.google.cloud.dialogflow.v2.OutputAudioConfig outputAudioConfig_;
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*
* @return Whether the outputAudioConfig field is set.
*/
@java.lang.Override
public boolean hasOutputAudioConfig() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*
* @return The outputAudioConfig.
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2.OutputAudioConfig getOutputAudioConfig() {
return outputAudioConfig_ == null
? com.google.cloud.dialogflow.v2.OutputAudioConfig.getDefaultInstance()
: outputAudioConfig_;
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2.OutputAudioConfigOrBuilder getOutputAudioConfigOrBuilder() {
return outputAudioConfig_ == null
? com.google.cloud.dialogflow.v2.OutputAudioConfig.getDefaultInstance()
: outputAudioConfig_;
}
public static final int DEBUGGING_INFO_FIELD_NUMBER = 8;
private com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debuggingInfo_;
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*
* @return Whether the debuggingInfo field is set.
*/
@java.lang.Override
public boolean hasDebuggingInfo() {
return ((bitField0_ & 0x00000010) != 0);
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*
* @return The debuggingInfo.
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo getDebuggingInfo() {
return debuggingInfo_ == null
? com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo.getDefaultInstance()
: debuggingInfo_;
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfoOrBuilder
getDebuggingInfoOrBuilder() {
return debuggingInfo_ == null
? com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo.getDefaultInstance()
: debuggingInfo_;
}
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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(responseId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, responseId_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(2, getRecognitionResult());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(3, getQueryResult());
}
if (((bitField0_ & 0x00000004) != 0)) {
output.writeMessage(4, getWebhookStatus());
}
if (!outputAudio_.isEmpty()) {
output.writeBytes(5, outputAudio_);
}
if (((bitField0_ & 0x00000008) != 0)) {
output.writeMessage(6, getOutputAudioConfig());
}
if (((bitField0_ & 0x00000010) != 0)) {
output.writeMessage(8, getDebuggingInfo());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(responseId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, responseId_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getRecognitionResult());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getQueryResult());
}
if (((bitField0_ & 0x00000004) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getWebhookStatus());
}
if (!outputAudio_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream.computeBytesSize(5, outputAudio_);
}
if (((bitField0_ & 0x00000008) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getOutputAudioConfig());
}
if (((bitField0_ & 0x00000010) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(8, getDebuggingInfo());
}
size += getUnknownFields().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.StreamingDetectIntentResponse)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse other =
(com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse) obj;
if (!getResponseId().equals(other.getResponseId())) return false;
if (hasRecognitionResult() != other.hasRecognitionResult()) return false;
if (hasRecognitionResult()) {
if (!getRecognitionResult().equals(other.getRecognitionResult())) return false;
}
if (hasQueryResult() != other.hasQueryResult()) return false;
if (hasQueryResult()) {
if (!getQueryResult().equals(other.getQueryResult())) return false;
}
if (hasWebhookStatus() != other.hasWebhookStatus()) return false;
if (hasWebhookStatus()) {
if (!getWebhookStatus().equals(other.getWebhookStatus())) return false;
}
if (!getOutputAudio().equals(other.getOutputAudio())) return false;
if (hasOutputAudioConfig() != other.hasOutputAudioConfig()) return false;
if (hasOutputAudioConfig()) {
if (!getOutputAudioConfig().equals(other.getOutputAudioConfig())) return false;
}
if (hasDebuggingInfo() != other.hasDebuggingInfo()) return false;
if (hasDebuggingInfo()) {
if (!getDebuggingInfo().equals(other.getDebuggingInfo())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) 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) + RESPONSE_ID_FIELD_NUMBER;
hash = (53 * hash) + getResponseId().hashCode();
if (hasRecognitionResult()) {
hash = (37 * hash) + RECOGNITION_RESULT_FIELD_NUMBER;
hash = (53 * hash) + getRecognitionResult().hashCode();
}
if (hasQueryResult()) {
hash = (37 * hash) + QUERY_RESULT_FIELD_NUMBER;
hash = (53 * hash) + getQueryResult().hashCode();
}
if (hasWebhookStatus()) {
hash = (37 * hash) + WEBHOOK_STATUS_FIELD_NUMBER;
hash = (53 * hash) + getWebhookStatus().hashCode();
}
hash = (37 * hash) + OUTPUT_AUDIO_FIELD_NUMBER;
hash = (53 * hash) + getOutputAudio().hashCode();
if (hasOutputAudioConfig()) {
hash = (37 * hash) + OUTPUT_AUDIO_CONFIG_FIELD_NUMBER;
hash = (53 * hash) + getOutputAudioConfig().hashCode();
}
if (hasDebuggingInfo()) {
hash = (37 * hash) + DEBUGGING_INFO_FIELD_NUMBER;
hash = (53 * hash) + getDebuggingInfo().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse 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.StreamingDetectIntentResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse 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.StreamingDetectIntentResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse 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.StreamingDetectIntentResponse parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse 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.StreamingDetectIntentResponse parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse 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.StreamingDetectIntentResponse 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.StreamingDetectIntentResponse 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.StreamingDetectIntentResponse 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 returned from the
* `StreamingDetectIntent` method.
*
* Multiple response messages can be returned in order:
*
* 1. If the `StreamingDetectIntentRequest.input_audio` field was
* set, the `recognition_result` field is populated for one
* or more messages.
* See the
* [StreamingRecognitionResult][google.cloud.dialogflow.v2.StreamingRecognitionResult]
* message for details about the result message sequence.
*
* 2. The next message contains `response_id`, `query_result`
* and optionally `webhook_status` if a WebHook was called.
*
*
* Protobuf type {@code google.cloud.dialogflow.v2.StreamingDetectIntentResponse}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2.StreamingDetectIntentResponse)
com.google.cloud.dialogflow.v2.StreamingDetectIntentResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2.SessionProto
.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2.SessionProto
.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.class,
com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.Builder.class);
}
// Construct using com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getRecognitionResultFieldBuilder();
getQueryResultFieldBuilder();
getWebhookStatusFieldBuilder();
getOutputAudioConfigFieldBuilder();
getDebuggingInfoFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
responseId_ = "";
recognitionResult_ = null;
if (recognitionResultBuilder_ != null) {
recognitionResultBuilder_.dispose();
recognitionResultBuilder_ = null;
}
queryResult_ = null;
if (queryResultBuilder_ != null) {
queryResultBuilder_.dispose();
queryResultBuilder_ = null;
}
webhookStatus_ = null;
if (webhookStatusBuilder_ != null) {
webhookStatusBuilder_.dispose();
webhookStatusBuilder_ = null;
}
outputAudio_ = com.google.protobuf.ByteString.EMPTY;
outputAudioConfig_ = null;
if (outputAudioConfigBuilder_ != null) {
outputAudioConfigBuilder_.dispose();
outputAudioConfigBuilder_ = null;
}
debuggingInfo_ = null;
if (debuggingInfoBuilder_ != null) {
debuggingInfoBuilder_.dispose();
debuggingInfoBuilder_ = null;
}
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_StreamingDetectIntentResponse_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse
getDefaultInstanceForType() {
return com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse build() {
com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse buildPartial() {
com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse result =
new com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.responseId_ = responseId_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.recognitionResult_ =
recognitionResultBuilder_ == null
? recognitionResult_
: recognitionResultBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.queryResult_ =
queryResultBuilder_ == null ? queryResult_ : queryResultBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.webhookStatus_ =
webhookStatusBuilder_ == null ? webhookStatus_ : webhookStatusBuilder_.build();
to_bitField0_ |= 0x00000004;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.outputAudio_ = outputAudio_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.outputAudioConfig_ =
outputAudioConfigBuilder_ == null
? outputAudioConfig_
: outputAudioConfigBuilder_.build();
to_bitField0_ |= 0x00000008;
}
if (((from_bitField0_ & 0x00000040) != 0)) {
result.debuggingInfo_ =
debuggingInfoBuilder_ == null ? debuggingInfo_ : debuggingInfoBuilder_.build();
to_bitField0_ |= 0x00000010;
}
result.bitField0_ |= to_bitField0_;
}
@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.StreamingDetectIntentResponse) {
return mergeFrom((com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse other) {
if (other
== com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.getDefaultInstance())
return this;
if (!other.getResponseId().isEmpty()) {
responseId_ = other.responseId_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasRecognitionResult()) {
mergeRecognitionResult(other.getRecognitionResult());
}
if (other.hasQueryResult()) {
mergeQueryResult(other.getQueryResult());
}
if (other.hasWebhookStatus()) {
mergeWebhookStatus(other.getWebhookStatus());
}
if (other.getOutputAudio() != com.google.protobuf.ByteString.EMPTY) {
setOutputAudio(other.getOutputAudio());
}
if (other.hasOutputAudioConfig()) {
mergeOutputAudioConfig(other.getOutputAudioConfig());
}
if (other.hasDebuggingInfo()) {
mergeDebuggingInfo(other.getDebuggingInfo());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
responseId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
input.readMessage(
getRecognitionResultFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
input.readMessage(getQueryResultFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
case 34:
{
input.readMessage(getWebhookStatusFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000008;
break;
} // case 34
case 42:
{
outputAudio_ = input.readBytes();
bitField0_ |= 0x00000010;
break;
} // case 42
case 50:
{
input.readMessage(
getOutputAudioConfigFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000020;
break;
} // case 50
case 66:
{
input.readMessage(getDebuggingInfoFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000040;
break;
} // case 66
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object responseId_ = "";
/**
*
*
*
* 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;
*
* @return The responseId.
*/
public java.lang.String getResponseId() {
java.lang.Object ref = responseId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
responseId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* 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;
*
* @return The bytes for responseId.
*/
public com.google.protobuf.ByteString getResponseIdBytes() {
java.lang.Object ref = responseId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
responseId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* 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;
*
* @param value The responseId to set.
* @return This builder for chaining.
*/
public Builder setResponseId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
responseId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* 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;
*
* @return This builder for chaining.
*/
public Builder clearResponseId() {
responseId_ = getDefaultInstance().getResponseId();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* 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;
*
* @param value The bytes for responseId to set.
* @return This builder for chaining.
*/
public Builder setResponseIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
responseId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private com.google.cloud.dialogflow.v2.StreamingRecognitionResult recognitionResult_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.StreamingRecognitionResult,
com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder,
com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder>
recognitionResultBuilder_;
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*
* @return Whether the recognitionResult field is set.
*/
public boolean hasRecognitionResult() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*
* @return The recognitionResult.
*/
public com.google.cloud.dialogflow.v2.StreamingRecognitionResult getRecognitionResult() {
if (recognitionResultBuilder_ == null) {
return recognitionResult_ == null
? com.google.cloud.dialogflow.v2.StreamingRecognitionResult.getDefaultInstance()
: recognitionResult_;
} else {
return recognitionResultBuilder_.getMessage();
}
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
public Builder setRecognitionResult(
com.google.cloud.dialogflow.v2.StreamingRecognitionResult value) {
if (recognitionResultBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
recognitionResult_ = value;
} else {
recognitionResultBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
public Builder setRecognitionResult(
com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder builderForValue) {
if (recognitionResultBuilder_ == null) {
recognitionResult_ = builderForValue.build();
} else {
recognitionResultBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
public Builder mergeRecognitionResult(
com.google.cloud.dialogflow.v2.StreamingRecognitionResult value) {
if (recognitionResultBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)
&& recognitionResult_ != null
&& recognitionResult_
!= com.google.cloud.dialogflow.v2.StreamingRecognitionResult.getDefaultInstance()) {
getRecognitionResultBuilder().mergeFrom(value);
} else {
recognitionResult_ = value;
}
} else {
recognitionResultBuilder_.mergeFrom(value);
}
if (recognitionResult_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
public Builder clearRecognitionResult() {
bitField0_ = (bitField0_ & ~0x00000002);
recognitionResult_ = null;
if (recognitionResultBuilder_ != null) {
recognitionResultBuilder_.dispose();
recognitionResultBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
public com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder
getRecognitionResultBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getRecognitionResultFieldBuilder().getBuilder();
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
public com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder
getRecognitionResultOrBuilder() {
if (recognitionResultBuilder_ != null) {
return recognitionResultBuilder_.getMessageOrBuilder();
} else {
return recognitionResult_ == null
? com.google.cloud.dialogflow.v2.StreamingRecognitionResult.getDefaultInstance()
: recognitionResult_;
}
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.StreamingRecognitionResult,
com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder,
com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder>
getRecognitionResultFieldBuilder() {
if (recognitionResultBuilder_ == null) {
recognitionResultBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.StreamingRecognitionResult,
com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder,
com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder>(
getRecognitionResult(), getParentForChildren(), isClean());
recognitionResult_ = null;
}
return recognitionResultBuilder_;
}
private com.google.cloud.dialogflow.v2.QueryResult queryResult_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.QueryResult,
com.google.cloud.dialogflow.v2.QueryResult.Builder,
com.google.cloud.dialogflow.v2.QueryResultOrBuilder>
queryResultBuilder_;
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*
* @return Whether the queryResult field is set.
*/
public boolean hasQueryResult() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*
* @return The queryResult.
*/
public com.google.cloud.dialogflow.v2.QueryResult getQueryResult() {
if (queryResultBuilder_ == null) {
return queryResult_ == null
? com.google.cloud.dialogflow.v2.QueryResult.getDefaultInstance()
: queryResult_;
} else {
return queryResultBuilder_.getMessage();
}
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
public Builder setQueryResult(com.google.cloud.dialogflow.v2.QueryResult value) {
if (queryResultBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
queryResult_ = value;
} else {
queryResultBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
public Builder setQueryResult(
com.google.cloud.dialogflow.v2.QueryResult.Builder builderForValue) {
if (queryResultBuilder_ == null) {
queryResult_ = builderForValue.build();
} else {
queryResultBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
public Builder mergeQueryResult(com.google.cloud.dialogflow.v2.QueryResult value) {
if (queryResultBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& queryResult_ != null
&& queryResult_ != com.google.cloud.dialogflow.v2.QueryResult.getDefaultInstance()) {
getQueryResultBuilder().mergeFrom(value);
} else {
queryResult_ = value;
}
} else {
queryResultBuilder_.mergeFrom(value);
}
if (queryResult_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
public Builder clearQueryResult() {
bitField0_ = (bitField0_ & ~0x00000004);
queryResult_ = null;
if (queryResultBuilder_ != null) {
queryResultBuilder_.dispose();
queryResultBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
public com.google.cloud.dialogflow.v2.QueryResult.Builder getQueryResultBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getQueryResultFieldBuilder().getBuilder();
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
public com.google.cloud.dialogflow.v2.QueryResultOrBuilder getQueryResultOrBuilder() {
if (queryResultBuilder_ != null) {
return queryResultBuilder_.getMessageOrBuilder();
} else {
return queryResult_ == null
? com.google.cloud.dialogflow.v2.QueryResult.getDefaultInstance()
: queryResult_;
}
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.QueryResult,
com.google.cloud.dialogflow.v2.QueryResult.Builder,
com.google.cloud.dialogflow.v2.QueryResultOrBuilder>
getQueryResultFieldBuilder() {
if (queryResultBuilder_ == null) {
queryResultBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.QueryResult,
com.google.cloud.dialogflow.v2.QueryResult.Builder,
com.google.cloud.dialogflow.v2.QueryResultOrBuilder>(
getQueryResult(), getParentForChildren(), isClean());
queryResult_ = null;
}
return queryResultBuilder_;
}
private com.google.rpc.Status webhookStatus_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>
webhookStatusBuilder_;
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*
* @return Whether the webhookStatus field is set.
*/
public boolean hasWebhookStatus() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*
* @return The webhookStatus.
*/
public com.google.rpc.Status getWebhookStatus() {
if (webhookStatusBuilder_ == null) {
return webhookStatus_ == null ? com.google.rpc.Status.getDefaultInstance() : webhookStatus_;
} else {
return webhookStatusBuilder_.getMessage();
}
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
public Builder setWebhookStatus(com.google.rpc.Status value) {
if (webhookStatusBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
webhookStatus_ = value;
} else {
webhookStatusBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
public Builder setWebhookStatus(com.google.rpc.Status.Builder builderForValue) {
if (webhookStatusBuilder_ == null) {
webhookStatus_ = builderForValue.build();
} else {
webhookStatusBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
public Builder mergeWebhookStatus(com.google.rpc.Status value) {
if (webhookStatusBuilder_ == null) {
if (((bitField0_ & 0x00000008) != 0)
&& webhookStatus_ != null
&& webhookStatus_ != com.google.rpc.Status.getDefaultInstance()) {
getWebhookStatusBuilder().mergeFrom(value);
} else {
webhookStatus_ = value;
}
} else {
webhookStatusBuilder_.mergeFrom(value);
}
if (webhookStatus_ != null) {
bitField0_ |= 0x00000008;
onChanged();
}
return this;
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
public Builder clearWebhookStatus() {
bitField0_ = (bitField0_ & ~0x00000008);
webhookStatus_ = null;
if (webhookStatusBuilder_ != null) {
webhookStatusBuilder_.dispose();
webhookStatusBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
public com.google.rpc.Status.Builder getWebhookStatusBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getWebhookStatusFieldBuilder().getBuilder();
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
public com.google.rpc.StatusOrBuilder getWebhookStatusOrBuilder() {
if (webhookStatusBuilder_ != null) {
return webhookStatusBuilder_.getMessageOrBuilder();
} else {
return webhookStatus_ == null ? com.google.rpc.Status.getDefaultInstance() : webhookStatus_;
}
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>
getWebhookStatusFieldBuilder() {
if (webhookStatusBuilder_ == null) {
webhookStatusBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.rpc.Status,
com.google.rpc.Status.Builder,
com.google.rpc.StatusOrBuilder>(
getWebhookStatus(), getParentForChildren(), isClean());
webhookStatus_ = null;
}
return webhookStatusBuilder_;
}
private com.google.protobuf.ByteString outputAudio_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* 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.
*
* In some scenarios, multiple output audio fields may be present in the
* response structure. In these cases, only the top-most-level audio output
* has content.
*
*
* bytes output_audio = 5;
*
* @return The outputAudio.
*/
@java.lang.Override
public com.google.protobuf.ByteString getOutputAudio() {
return outputAudio_;
}
/**
*
*
*
* 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.
*
* In some scenarios, multiple output audio fields may be present in the
* response structure. In these cases, only the top-most-level audio output
* has content.
*
*
* bytes output_audio = 5;
*
* @param value The outputAudio to set.
* @return This builder for chaining.
*/
public Builder setOutputAudio(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
outputAudio_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* 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.
*
* In some scenarios, multiple output audio fields may be present in the
* response structure. In these cases, only the top-most-level audio output
* has content.
*
*
* bytes output_audio = 5;
*
* @return This builder for chaining.
*/
public Builder clearOutputAudio() {
bitField0_ = (bitField0_ & ~0x00000010);
outputAudio_ = getDefaultInstance().getOutputAudio();
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_;
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*
* @return Whether the outputAudioConfig field is set.
*/
public boolean hasOutputAudioConfig() {
return ((bitField0_ & 0x00000020) != 0);
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*
* @return The outputAudioConfig.
*/
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();
}
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public Builder setOutputAudioConfig(com.google.cloud.dialogflow.v2.OutputAudioConfig value) {
if (outputAudioConfigBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
outputAudioConfig_ = value;
} else {
outputAudioConfigBuilder_.setMessage(value);
}
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public Builder setOutputAudioConfig(
com.google.cloud.dialogflow.v2.OutputAudioConfig.Builder builderForValue) {
if (outputAudioConfigBuilder_ == null) {
outputAudioConfig_ = builderForValue.build();
} else {
outputAudioConfigBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public Builder mergeOutputAudioConfig(com.google.cloud.dialogflow.v2.OutputAudioConfig value) {
if (outputAudioConfigBuilder_ == null) {
if (((bitField0_ & 0x00000020) != 0)
&& outputAudioConfig_ != null
&& outputAudioConfig_
!= com.google.cloud.dialogflow.v2.OutputAudioConfig.getDefaultInstance()) {
getOutputAudioConfigBuilder().mergeFrom(value);
} else {
outputAudioConfig_ = value;
}
} else {
outputAudioConfigBuilder_.mergeFrom(value);
}
if (outputAudioConfig_ != null) {
bitField0_ |= 0x00000020;
onChanged();
}
return this;
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public Builder clearOutputAudioConfig() {
bitField0_ = (bitField0_ & ~0x00000020);
outputAudioConfig_ = null;
if (outputAudioConfigBuilder_ != null) {
outputAudioConfigBuilder_.dispose();
outputAudioConfigBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public com.google.cloud.dialogflow.v2.OutputAudioConfig.Builder getOutputAudioConfigBuilder() {
bitField0_ |= 0x00000020;
onChanged();
return getOutputAudioConfigFieldBuilder().getBuilder();
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
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_;
}
}
/**
*
*
*
* The config used by the speech synthesizer to generate the output audio.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
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.cloud.dialogflow.v2.CloudConversationDebuggingInfo debuggingInfo_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo,
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo.Builder,
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfoOrBuilder>
debuggingInfoBuilder_;
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*
* @return Whether the debuggingInfo field is set.
*/
public boolean hasDebuggingInfo() {
return ((bitField0_ & 0x00000040) != 0);
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*
* @return The debuggingInfo.
*/
public com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo getDebuggingInfo() {
if (debuggingInfoBuilder_ == null) {
return debuggingInfo_ == null
? com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo.getDefaultInstance()
: debuggingInfo_;
} else {
return debuggingInfoBuilder_.getMessage();
}
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*/
public Builder setDebuggingInfo(
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo value) {
if (debuggingInfoBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
debuggingInfo_ = value;
} else {
debuggingInfoBuilder_.setMessage(value);
}
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*/
public Builder setDebuggingInfo(
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo.Builder builderForValue) {
if (debuggingInfoBuilder_ == null) {
debuggingInfo_ = builderForValue.build();
} else {
debuggingInfoBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*/
public Builder mergeDebuggingInfo(
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo value) {
if (debuggingInfoBuilder_ == null) {
if (((bitField0_ & 0x00000040) != 0)
&& debuggingInfo_ != null
&& debuggingInfo_
!= com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo
.getDefaultInstance()) {
getDebuggingInfoBuilder().mergeFrom(value);
} else {
debuggingInfo_ = value;
}
} else {
debuggingInfoBuilder_.mergeFrom(value);
}
if (debuggingInfo_ != null) {
bitField0_ |= 0x00000040;
onChanged();
}
return this;
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*/
public Builder clearDebuggingInfo() {
bitField0_ = (bitField0_ & ~0x00000040);
debuggingInfo_ = null;
if (debuggingInfoBuilder_ != null) {
debuggingInfoBuilder_.dispose();
debuggingInfoBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*/
public com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo.Builder
getDebuggingInfoBuilder() {
bitField0_ |= 0x00000040;
onChanged();
return getDebuggingInfoFieldBuilder().getBuilder();
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*/
public com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfoOrBuilder
getDebuggingInfoOrBuilder() {
if (debuggingInfoBuilder_ != null) {
return debuggingInfoBuilder_.getMessageOrBuilder();
} else {
return debuggingInfo_ == null
? com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo.getDefaultInstance()
: debuggingInfo_;
}
}
/**
*
*
*
* Debugging info that would get populated when
* `StreamingDetectIntentRequest.enable_debugging_info` is set to true.
*
*
* .google.cloud.dialogflow.v2.CloudConversationDebuggingInfo debugging_info = 8;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo,
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo.Builder,
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfoOrBuilder>
getDebuggingInfoFieldBuilder() {
if (debuggingInfoBuilder_ == null) {
debuggingInfoBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo,
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfo.Builder,
com.google.cloud.dialogflow.v2.CloudConversationDebuggingInfoOrBuilder>(
getDebuggingInfo(), getParentForChildren(), isClean());
debuggingInfo_ = null;
}
return debuggingInfoBuilder_;
}
@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.StreamingDetectIntentResponse)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2.StreamingDetectIntentResponse)
private static final com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse();
}
public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StreamingDetectIntentResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
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.StreamingDetectIntentResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}