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

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

The newest version!
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/dialogflow/cx/v3beta1/session.proto

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

/**
 *
 *
 * 
 * Response of [FulfillIntent][]
 * 
* * Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse} */ public final class FulfillIntentResponse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse) FulfillIntentResponseOrBuilder { private static final long serialVersionUID = 0L; // Use FulfillIntentResponse.newBuilder() to construct. private FulfillIntentResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private FulfillIntentResponse() { responseId_ = ""; outputAudio_ = com.google.protobuf.ByteString.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new FulfillIntentResponse(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.cx.v3beta1.SessionProto .internal_static_google_cloud_dialogflow_cx_v3beta1_FulfillIntentResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.cx.v3beta1.SessionProto .internal_static_google_cloud_dialogflow_cx_v3beta1_FulfillIntentResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse.class, com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse.Builder.class); } private int bitField0_; public static final int RESPONSE_ID_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object responseId_ = ""; /** * * *
   * Output only. 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; } } /** * * *
   * Output only. 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 QUERY_RESULT_FIELD_NUMBER = 2; private com.google.cloud.dialogflow.cx.v3beta1.QueryResult queryResult_; /** * * *
   * The result of the conversational query.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; * * @return Whether the queryResult field is set. */ @java.lang.Override public boolean hasQueryResult() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * The result of the conversational query.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; * * @return The queryResult. */ @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.QueryResult getQueryResult() { return queryResult_ == null ? com.google.cloud.dialogflow.cx.v3beta1.QueryResult.getDefaultInstance() : queryResult_; } /** * * *
   * The result of the conversational query.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; */ @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.QueryResultOrBuilder getQueryResultOrBuilder() { return queryResult_ == null ? com.google.cloud.dialogflow.cx.v3beta1.QueryResult.getDefaultInstance() : queryResult_; } public static final int OUTPUT_AUDIO_FIELD_NUMBER = 3; 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.response_messages`][google.cloud.dialogflow.cx.v3beta1.QueryResult.response_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 = 3; * * @return The outputAudio. */ @java.lang.Override public com.google.protobuf.ByteString getOutputAudio() { return outputAudio_; } public static final int OUTPUT_AUDIO_CONFIG_FIELD_NUMBER = 4; private com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig outputAudioConfig_; /** * * *
   * The config used by the speech synthesizer to generate the output audio.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; * * @return Whether the outputAudioConfig field is set. */ @java.lang.Override public boolean hasOutputAudioConfig() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
   * The config used by the speech synthesizer to generate the output audio.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; * * @return The outputAudioConfig. */ @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig getOutputAudioConfig() { return outputAudioConfig_ == null ? com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.getDefaultInstance() : outputAudioConfig_; } /** * * *
   * The config used by the speech synthesizer to generate the output audio.
   * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; */ @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfigOrBuilder getOutputAudioConfigOrBuilder() { return outputAudioConfig_ == null ? com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.getDefaultInstance() : outputAudioConfig_; } 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, getQueryResult()); } if (!outputAudio_.isEmpty()) { output.writeBytes(3, outputAudio_); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(4, getOutputAudioConfig()); } 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, getQueryResult()); } if (!outputAudio_.isEmpty()) { size += com.google.protobuf.CodedOutputStream.computeBytesSize(3, outputAudio_); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getOutputAudioConfig()); } 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.cx.v3beta1.FulfillIntentResponse)) { return super.equals(obj); } com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse other = (com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse) obj; if (!getResponseId().equals(other.getResponseId())) return false; if (hasQueryResult() != other.hasQueryResult()) return false; if (hasQueryResult()) { if (!getQueryResult().equals(other.getQueryResult())) 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 (!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 (hasQueryResult()) { hash = (37 * hash) + QUERY_RESULT_FIELD_NUMBER; hash = (53 * hash) + getQueryResult().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) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse 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.cx.v3beta1.FulfillIntentResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse 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.cx.v3beta1.FulfillIntentResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse 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.cx.v3beta1.FulfillIntentResponse parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse 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.cx.v3beta1.FulfillIntentResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse 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.cx.v3beta1.FulfillIntentResponse 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; } /** * * *
   * Response of [FulfillIntent][]
   * 
* * Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse) com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.cx.v3beta1.SessionProto .internal_static_google_cloud_dialogflow_cx_v3beta1_FulfillIntentResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.cx.v3beta1.SessionProto .internal_static_google_cloud_dialogflow_cx_v3beta1_FulfillIntentResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse.class, com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse.Builder.class); } // Construct using com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getQueryResultFieldBuilder(); getOutputAudioConfigFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; responseId_ = ""; queryResult_ = null; if (queryResultBuilder_ != null) { queryResultBuilder_.dispose(); queryResultBuilder_ = null; } outputAudio_ = com.google.protobuf.ByteString.EMPTY; outputAudioConfig_ = null; if (outputAudioConfigBuilder_ != null) { outputAudioConfigBuilder_.dispose(); outputAudioConfigBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.dialogflow.cx.v3beta1.SessionProto .internal_static_google_cloud_dialogflow_cx_v3beta1_FulfillIntentResponse_descriptor; } @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse getDefaultInstanceForType() { return com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse.getDefaultInstance(); } @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse build() { com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse buildPartial() { com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse result = new com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0( com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.responseId_ = responseId_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000002) != 0)) { result.queryResult_ = queryResultBuilder_ == null ? queryResult_ : queryResultBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000004) != 0)) { result.outputAudio_ = outputAudio_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.outputAudioConfig_ = outputAudioConfigBuilder_ == null ? outputAudioConfig_ : outputAudioConfigBuilder_.build(); to_bitField0_ |= 0x00000002; } 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.cx.v3beta1.FulfillIntentResponse) { return mergeFrom((com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse other) { if (other == com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse.getDefaultInstance()) return this; if (!other.getResponseId().isEmpty()) { responseId_ = other.responseId_; bitField0_ |= 0x00000001; onChanged(); } if (other.hasQueryResult()) { mergeQueryResult(other.getQueryResult()); } if (other.getOutputAudio() != com.google.protobuf.ByteString.EMPTY) { setOutputAudio(other.getOutputAudio()); } if (other.hasOutputAudioConfig()) { mergeOutputAudioConfig(other.getOutputAudioConfig()); } 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(getQueryResultFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 18 case 26: { outputAudio_ = input.readBytes(); bitField0_ |= 0x00000004; break; } // case 26 case 34: { input.readMessage( getOutputAudioConfigFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000008; break; } // case 34 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_ = ""; /** * * *
     * Output only. 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; } } /** * * *
     * Output only. 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; } } /** * * *
     * Output only. 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; } /** * * *
     * Output only. 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; } /** * * *
     * Output only. 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.cx.v3beta1.QueryResult queryResult_; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.cx.v3beta1.QueryResult, com.google.cloud.dialogflow.cx.v3beta1.QueryResult.Builder, com.google.cloud.dialogflow.cx.v3beta1.QueryResultOrBuilder> queryResultBuilder_; /** * * *
     * The result of the conversational query.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; * * @return Whether the queryResult field is set. */ public boolean hasQueryResult() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
     * The result of the conversational query.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; * * @return The queryResult. */ public com.google.cloud.dialogflow.cx.v3beta1.QueryResult getQueryResult() { if (queryResultBuilder_ == null) { return queryResult_ == null ? com.google.cloud.dialogflow.cx.v3beta1.QueryResult.getDefaultInstance() : queryResult_; } else { return queryResultBuilder_.getMessage(); } } /** * * *
     * The result of the conversational query.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; */ public Builder setQueryResult(com.google.cloud.dialogflow.cx.v3beta1.QueryResult value) { if (queryResultBuilder_ == null) { if (value == null) { throw new NullPointerException(); } queryResult_ = value; } else { queryResultBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The result of the conversational query.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; */ public Builder setQueryResult( com.google.cloud.dialogflow.cx.v3beta1.QueryResult.Builder builderForValue) { if (queryResultBuilder_ == null) { queryResult_ = builderForValue.build(); } else { queryResultBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The result of the conversational query.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; */ public Builder mergeQueryResult(com.google.cloud.dialogflow.cx.v3beta1.QueryResult value) { if (queryResultBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && queryResult_ != null && queryResult_ != com.google.cloud.dialogflow.cx.v3beta1.QueryResult.getDefaultInstance()) { getQueryResultBuilder().mergeFrom(value); } else { queryResult_ = value; } } else { queryResultBuilder_.mergeFrom(value); } if (queryResult_ != null) { bitField0_ |= 0x00000002; onChanged(); } return this; } /** * * *
     * The result of the conversational query.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; */ public Builder clearQueryResult() { bitField0_ = (bitField0_ & ~0x00000002); queryResult_ = null; if (queryResultBuilder_ != null) { queryResultBuilder_.dispose(); queryResultBuilder_ = null; } onChanged(); return this; } /** * * *
     * The result of the conversational query.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; */ public com.google.cloud.dialogflow.cx.v3beta1.QueryResult.Builder getQueryResultBuilder() { bitField0_ |= 0x00000002; onChanged(); return getQueryResultFieldBuilder().getBuilder(); } /** * * *
     * The result of the conversational query.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; */ public com.google.cloud.dialogflow.cx.v3beta1.QueryResultOrBuilder getQueryResultOrBuilder() { if (queryResultBuilder_ != null) { return queryResultBuilder_.getMessageOrBuilder(); } else { return queryResult_ == null ? com.google.cloud.dialogflow.cx.v3beta1.QueryResult.getDefaultInstance() : queryResult_; } } /** * * *
     * The result of the conversational query.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.QueryResult query_result = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.cx.v3beta1.QueryResult, com.google.cloud.dialogflow.cx.v3beta1.QueryResult.Builder, com.google.cloud.dialogflow.cx.v3beta1.QueryResultOrBuilder> getQueryResultFieldBuilder() { if (queryResultBuilder_ == null) { queryResultBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.cx.v3beta1.QueryResult, com.google.cloud.dialogflow.cx.v3beta1.QueryResult.Builder, com.google.cloud.dialogflow.cx.v3beta1.QueryResultOrBuilder>( getQueryResult(), getParentForChildren(), isClean()); queryResult_ = null; } return queryResultBuilder_; } 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.response_messages`][google.cloud.dialogflow.cx.v3beta1.QueryResult.response_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 = 3; * * @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.response_messages`][google.cloud.dialogflow.cx.v3beta1.QueryResult.response_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 = 3; * * @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_ |= 0x00000004; 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.response_messages`][google.cloud.dialogflow.cx.v3beta1.QueryResult.response_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 = 3; * * @return This builder for chaining. */ public Builder clearOutputAudio() { bitField0_ = (bitField0_ & ~0x00000004); outputAudio_ = getDefaultInstance().getOutputAudio(); onChanged(); return this; } private com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig outputAudioConfig_; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig, com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.Builder, com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfigOrBuilder> outputAudioConfigBuilder_; /** * * *
     * The config used by the speech synthesizer to generate the output audio.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; * * @return Whether the outputAudioConfig field is set. */ public boolean hasOutputAudioConfig() { return ((bitField0_ & 0x00000008) != 0); } /** * * *
     * The config used by the speech synthesizer to generate the output audio.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; * * @return The outputAudioConfig. */ public com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig getOutputAudioConfig() { if (outputAudioConfigBuilder_ == null) { return outputAudioConfig_ == null ? com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.getDefaultInstance() : outputAudioConfig_; } else { return outputAudioConfigBuilder_.getMessage(); } } /** * * *
     * The config used by the speech synthesizer to generate the output audio.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; */ public Builder setOutputAudioConfig( com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig value) { if (outputAudioConfigBuilder_ == null) { if (value == null) { throw new NullPointerException(); } outputAudioConfig_ = value; } else { outputAudioConfigBuilder_.setMessage(value); } bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * The config used by the speech synthesizer to generate the output audio.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; */ public Builder setOutputAudioConfig( com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.Builder builderForValue) { if (outputAudioConfigBuilder_ == null) { outputAudioConfig_ = builderForValue.build(); } else { outputAudioConfigBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * The config used by the speech synthesizer to generate the output audio.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; */ public Builder mergeOutputAudioConfig( com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig value) { if (outputAudioConfigBuilder_ == null) { if (((bitField0_ & 0x00000008) != 0) && outputAudioConfig_ != null && outputAudioConfig_ != com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.getDefaultInstance()) { getOutputAudioConfigBuilder().mergeFrom(value); } else { outputAudioConfig_ = value; } } else { outputAudioConfigBuilder_.mergeFrom(value); } if (outputAudioConfig_ != null) { bitField0_ |= 0x00000008; onChanged(); } return this; } /** * * *
     * The config used by the speech synthesizer to generate the output audio.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; */ public Builder clearOutputAudioConfig() { bitField0_ = (bitField0_ & ~0x00000008); 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.cx.v3beta1.OutputAudioConfig output_audio_config = 4; */ public com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.Builder getOutputAudioConfigBuilder() { bitField0_ |= 0x00000008; onChanged(); return getOutputAudioConfigFieldBuilder().getBuilder(); } /** * * *
     * The config used by the speech synthesizer to generate the output audio.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; */ public com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfigOrBuilder getOutputAudioConfigOrBuilder() { if (outputAudioConfigBuilder_ != null) { return outputAudioConfigBuilder_.getMessageOrBuilder(); } else { return outputAudioConfig_ == null ? com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.getDefaultInstance() : outputAudioConfig_; } } /** * * *
     * The config used by the speech synthesizer to generate the output audio.
     * 
* * .google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig output_audio_config = 4; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig, com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.Builder, com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfigOrBuilder> getOutputAudioConfigFieldBuilder() { if (outputAudioConfigBuilder_ == null) { outputAudioConfigBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig, com.google.cloud.dialogflow.cx.v3beta1.OutputAudioConfig.Builder, com.google.cloud.dialogflow.cx.v3beta1.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.cx.v3beta1.FulfillIntentResponse) } // @@protoc_insertion_point(class_scope:google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse) private static final com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse(); } public static com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public FulfillIntentResponse 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.cx.v3beta1.FulfillIntentResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy