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
// 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 returned from the
* `StreamingDetectIntent` method.
* Multiple response messages can be returned in order:
* 1. If the input was set to streaming audio, the first one or more messages
* contain `recognition_result`. Each `recognition_result` represents a more
* complete transcript of what the user said. The last `recognition_result`
* has `is_final` set to `true`.
* 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
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private StreamingDetectIntentResponse(
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();
responseId_ = s;
break;
}
case 18:
{
com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder subBuilder = null;
if (recognitionResult_ != null) {
subBuilder = recognitionResult_.toBuilder();
}
recognitionResult_ =
input.readMessage(
com.google.cloud.dialogflow.v2.StreamingRecognitionResult.parser(),
extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(recognitionResult_);
recognitionResult_ = subBuilder.buildPartial();
}
break;
}
case 26:
{
com.google.cloud.dialogflow.v2.QueryResult.Builder subBuilder = null;
if (queryResult_ != null) {
subBuilder = queryResult_.toBuilder();
}
queryResult_ =
input.readMessage(
com.google.cloud.dialogflow.v2.QueryResult.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(queryResult_);
queryResult_ = subBuilder.buildPartial();
}
break;
}
case 34:
{
com.google.rpc.Status.Builder subBuilder = null;
if (webhookStatus_ != null) {
subBuilder = webhookStatus_.toBuilder();
}
webhookStatus_ = input.readMessage(com.google.rpc.Status.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(webhookStatus_);
webhookStatus_ = subBuilder.buildPartial();
}
break;
}
case 42:
{
outputAudio_ = input.readBytes();
break;
}
case 50:
{
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;
}
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_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);
}
public static final int RESPONSE_ID_FIELD_NUMBER = 1;
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;
*/
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;
*/
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;
*/
public boolean hasRecognitionResult() {
return recognitionResult_ != null;
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
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;
*/
public com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder
getRecognitionResultOrBuilder() {
return getRecognitionResult();
}
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;
*/
public boolean hasQueryResult() {
return queryResult_ != null;
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
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;
*/
public com.google.cloud.dialogflow.v2.QueryResultOrBuilder getQueryResultOrBuilder() {
return getQueryResult();
}
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;
*/
public boolean hasWebhookStatus() {
return webhookStatus_ != null;
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
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;
*/
public com.google.rpc.StatusOrBuilder getWebhookStatusOrBuilder() {
return getWebhookStatus();
}
public static final int OUTPUT_AUDIO_FIELD_NUMBER = 5;
private com.google.protobuf.ByteString outputAudio_;
/**
*
*
*
* The audio data bytes encoded as specified in the request.
*
*
* bytes output_audio = 5;
*/
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_;
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public boolean hasOutputAudioConfig() {
return outputAudioConfig_ != null;
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public com.google.cloud.dialogflow.v2.OutputAudioConfig getOutputAudioConfig() {
return outputAudioConfig_ == null
? com.google.cloud.dialogflow.v2.OutputAudioConfig.getDefaultInstance()
: outputAudioConfig_;
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public com.google.cloud.dialogflow.v2.OutputAudioConfigOrBuilder getOutputAudioConfigOrBuilder() {
return getOutputAudioConfig();
}
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 (!getResponseIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, responseId_);
}
if (recognitionResult_ != null) {
output.writeMessage(2, getRecognitionResult());
}
if (queryResult_ != null) {
output.writeMessage(3, getQueryResult());
}
if (webhookStatus_ != null) {
output.writeMessage(4, getWebhookStatus());
}
if (!outputAudio_.isEmpty()) {
output.writeBytes(5, outputAudio_);
}
if (outputAudioConfig_ != null) {
output.writeMessage(6, getOutputAudioConfig());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getResponseIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, responseId_);
}
if (recognitionResult_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getRecognitionResult());
}
if (queryResult_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getQueryResult());
}
if (webhookStatus_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getWebhookStatus());
}
if (!outputAudio_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream.computeBytesSize(5, outputAudio_);
}
if (outputAudioConfig_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getOutputAudioConfig());
}
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.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 (!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) + 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();
}
hash = (29 * hash) + unknownFields.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 input was set to streaming audio, the first one or more messages
* contain `recognition_result`. Each `recognition_result` represents a more
* complete transcript of what the user said. The last `recognition_result`
* has `is_final` set to `true`.
* 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) {}
}
@java.lang.Override
public Builder clear() {
super.clear();
responseId_ = "";
if (recognitionResultBuilder_ == null) {
recognitionResult_ = null;
} else {
recognitionResult_ = null;
recognitionResultBuilder_ = null;
}
if (queryResultBuilder_ == null) {
queryResult_ = null;
} else {
queryResult_ = null;
queryResultBuilder_ = null;
}
if (webhookStatusBuilder_ == null) {
webhookStatus_ = null;
} else {
webhookStatus_ = null;
webhookStatusBuilder_ = null;
}
outputAudio_ = com.google.protobuf.ByteString.EMPTY;
if (outputAudioConfigBuilder_ == null) {
outputAudioConfig_ = null;
} else {
outputAudioConfig_ = null;
outputAudioConfigBuilder_ = 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);
result.responseId_ = responseId_;
if (recognitionResultBuilder_ == null) {
result.recognitionResult_ = recognitionResult_;
} else {
result.recognitionResult_ = recognitionResultBuilder_.build();
}
if (queryResultBuilder_ == null) {
result.queryResult_ = queryResult_;
} else {
result.queryResult_ = queryResultBuilder_.build();
}
if (webhookStatusBuilder_ == null) {
result.webhookStatus_ = webhookStatus_;
} else {
result.webhookStatus_ = webhookStatusBuilder_.build();
}
result.outputAudio_ = outputAudio_;
if (outputAudioConfigBuilder_ == null) {
result.outputAudioConfig_ = outputAudioConfig_;
} else {
result.outputAudioConfig_ = outputAudioConfigBuilder_.build();
}
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.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_;
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());
}
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.StreamingDetectIntentResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage =
(com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
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;
*/
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;
*/
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;
*/
public Builder setResponseId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
responseId_ = value;
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;
*/
public Builder clearResponseId() {
responseId_ = getDefaultInstance().getResponseId();
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;
*/
public Builder setResponseIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
responseId_ = value;
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;
*/
public boolean hasRecognitionResult() {
return recognitionResultBuilder_ != null || recognitionResult_ != null;
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
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;
onChanged();
} else {
recognitionResultBuilder_.setMessage(value);
}
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();
onChanged();
} else {
recognitionResultBuilder_.setMessage(builderForValue.build());
}
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 (recognitionResult_ != null) {
recognitionResult_ =
com.google.cloud.dialogflow.v2.StreamingRecognitionResult.newBuilder(
recognitionResult_)
.mergeFrom(value)
.buildPartial();
} else {
recognitionResult_ = value;
}
onChanged();
} else {
recognitionResultBuilder_.mergeFrom(value);
}
return this;
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
public Builder clearRecognitionResult() {
if (recognitionResultBuilder_ == null) {
recognitionResult_ = null;
onChanged();
} else {
recognitionResult_ = null;
recognitionResultBuilder_ = null;
}
return this;
}
/**
*
*
*
* The result of speech recognition.
*
*
* .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2;
*/
public com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder
getRecognitionResultBuilder() {
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;
*/
public boolean hasQueryResult() {
return queryResultBuilder_ != null || queryResult_ != null;
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
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;
onChanged();
} else {
queryResultBuilder_.setMessage(value);
}
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();
onChanged();
} else {
queryResultBuilder_.setMessage(builderForValue.build());
}
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 (queryResult_ != null) {
queryResult_ =
com.google.cloud.dialogflow.v2.QueryResult.newBuilder(queryResult_)
.mergeFrom(value)
.buildPartial();
} else {
queryResult_ = value;
}
onChanged();
} else {
queryResultBuilder_.mergeFrom(value);
}
return this;
}
/**
*
*
*
* The result of the conversational query or event processing.
*
*
* .google.cloud.dialogflow.v2.QueryResult query_result = 3;
*/
public Builder clearQueryResult() {
if (queryResultBuilder_ == null) {
queryResult_ = null;
onChanged();
} else {
queryResult_ = null;
queryResultBuilder_ = null;
}
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() {
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;
*/
public boolean hasWebhookStatus() {
return webhookStatusBuilder_ != null || webhookStatus_ != null;
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
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;
onChanged();
} else {
webhookStatusBuilder_.setMessage(value);
}
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();
onChanged();
} else {
webhookStatusBuilder_.setMessage(builderForValue.build());
}
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 (webhookStatus_ != null) {
webhookStatus_ =
com.google.rpc.Status.newBuilder(webhookStatus_).mergeFrom(value).buildPartial();
} else {
webhookStatus_ = value;
}
onChanged();
} else {
webhookStatusBuilder_.mergeFrom(value);
}
return this;
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
public Builder clearWebhookStatus() {
if (webhookStatusBuilder_ == null) {
webhookStatus_ = null;
onChanged();
} else {
webhookStatus_ = null;
webhookStatusBuilder_ = null;
}
return this;
}
/**
*
*
*
* Specifies the status of the webhook request.
*
*
* .google.rpc.Status webhook_status = 4;
*/
public com.google.rpc.Status.Builder getWebhookStatusBuilder() {
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.
*
*
* bytes output_audio = 5;
*/
public com.google.protobuf.ByteString getOutputAudio() {
return outputAudio_;
}
/**
*
*
*
* The audio data bytes encoded as specified in the request.
*
*
* bytes output_audio = 5;
*/
public Builder setOutputAudio(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
outputAudio_ = value;
onChanged();
return this;
}
/**
*
*
*
* The audio data bytes encoded as specified in the request.
*
*
* bytes output_audio = 5;
*/
public Builder clearOutputAudio() {
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_;
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public boolean hasOutputAudioConfig() {
return outputAudioConfigBuilder_ != null || outputAudioConfig_ != null;
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
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();
}
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .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;
onChanged();
} else {
outputAudioConfigBuilder_.setMessage(value);
}
return this;
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .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();
onChanged();
} else {
outputAudioConfigBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
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;
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public Builder clearOutputAudioConfig() {
if (outputAudioConfigBuilder_ == null) {
outputAudioConfig_ = null;
onChanged();
} else {
outputAudioConfig_ = null;
outputAudioConfigBuilder_ = null;
}
return this;
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .google.cloud.dialogflow.v2.OutputAudioConfig output_audio_config = 6;
*/
public com.google.cloud.dialogflow.v2.OutputAudioConfig.Builder getOutputAudioConfigBuilder() {
onChanged();
return getOutputAudioConfigFieldBuilder().getBuilder();
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .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_;
}
}
/**
*
*
*
* Instructs the speech synthesizer how to generate the output audio. This
* field is populated from the agent-level speech synthesizer configuration,
* if enabled.
*
*
* .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_;
}
@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 {
return new StreamingDetectIntentResponse(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.StreamingDetectIntentResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}