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

com.google.cloud.dialogflow.v2.DetectIntentRequest Maven / Gradle / Ivy

There is a newer version: 4.55.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/dialogflow/v2/session.proto

package com.google.cloud.dialogflow.v2;

/**
 * 
 * The request to detect user's intent.
 * 
* * Protobuf type {@code google.cloud.dialogflow.v2.DetectIntentRequest} */ public final class DetectIntentRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2.DetectIntentRequest) DetectIntentRequestOrBuilder { private static final long serialVersionUID = 0L; // Use DetectIntentRequest.newBuilder() to construct. private DetectIntentRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private DetectIntentRequest() { session_ = ""; inputAudio_ = com.google.protobuf.ByteString.EMPTY; } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private DetectIntentRequest( 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; default: { if (!parseUnknownFieldProto3( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } case 10: { java.lang.String s = input.readStringRequireUtf8(); session_ = s; break; } case 18: { com.google.cloud.dialogflow.v2.QueryParameters.Builder subBuilder = null; if (queryParams_ != null) { subBuilder = queryParams_.toBuilder(); } queryParams_ = input.readMessage(com.google.cloud.dialogflow.v2.QueryParameters.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(queryParams_); queryParams_ = subBuilder.buildPartial(); } break; } case 26: { com.google.cloud.dialogflow.v2.QueryInput.Builder subBuilder = null; if (queryInput_ != null) { subBuilder = queryInput_.toBuilder(); } queryInput_ = input.readMessage(com.google.cloud.dialogflow.v2.QueryInput.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(queryInput_); queryInput_ = subBuilder.buildPartial(); } break; } case 42: { inputAudio_ = input.readBytes(); 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_DetectIntentRequest_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_DetectIntentRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.v2.DetectIntentRequest.class, com.google.cloud.dialogflow.v2.DetectIntentRequest.Builder.class); } public static final int SESSION_FIELD_NUMBER = 1; private volatile java.lang.Object session_; /** *
   * Required. The name of the session this query is sent to. Format:
   * `projects/<Project ID>/agent/sessions/<Session ID>`. It's up to the API
   * caller to choose an appropriate session ID. It can be a random number or
   * some type of user identifier (preferably hashed). The length of the session
   * ID must not exceed 36 bytes.
   * 
* * string session = 1; */ public java.lang.String getSession() { java.lang.Object ref = session_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); session_ = s; return s; } } /** *
   * Required. The name of the session this query is sent to. Format:
   * `projects/<Project ID>/agent/sessions/<Session ID>`. It's up to the API
   * caller to choose an appropriate session ID. It can be a random number or
   * some type of user identifier (preferably hashed). The length of the session
   * ID must not exceed 36 bytes.
   * 
* * string session = 1; */ public com.google.protobuf.ByteString getSessionBytes() { java.lang.Object ref = session_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); session_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int QUERY_PARAMS_FIELD_NUMBER = 2; private com.google.cloud.dialogflow.v2.QueryParameters queryParams_; /** *
   * Optional. The parameters of this query.
   * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public boolean hasQueryParams() { return queryParams_ != null; } /** *
   * Optional. The parameters of this query.
   * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public com.google.cloud.dialogflow.v2.QueryParameters getQueryParams() { return queryParams_ == null ? com.google.cloud.dialogflow.v2.QueryParameters.getDefaultInstance() : queryParams_; } /** *
   * Optional. The parameters of this query.
   * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public com.google.cloud.dialogflow.v2.QueryParametersOrBuilder getQueryParamsOrBuilder() { return getQueryParams(); } public static final int QUERY_INPUT_FIELD_NUMBER = 3; private com.google.cloud.dialogflow.v2.QueryInput queryInput_; /** *
   * Required. The input specification. It can be set to:
   * 1.  an audio config
   *     which instructs the speech recognizer how to process the speech audio,
   * 2.  a conversational query in the form of text, or
   * 3.  an event that specifies which intent to trigger.
   * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public boolean hasQueryInput() { return queryInput_ != null; } /** *
   * Required. The input specification. It can be set to:
   * 1.  an audio config
   *     which instructs the speech recognizer how to process the speech audio,
   * 2.  a conversational query in the form of text, or
   * 3.  an event that specifies which intent to trigger.
   * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public com.google.cloud.dialogflow.v2.QueryInput getQueryInput() { return queryInput_ == null ? com.google.cloud.dialogflow.v2.QueryInput.getDefaultInstance() : queryInput_; } /** *
   * Required. The input specification. It can be set to:
   * 1.  an audio config
   *     which instructs the speech recognizer how to process the speech audio,
   * 2.  a conversational query in the form of text, or
   * 3.  an event that specifies which intent to trigger.
   * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public com.google.cloud.dialogflow.v2.QueryInputOrBuilder getQueryInputOrBuilder() { return getQueryInput(); } public static final int INPUT_AUDIO_FIELD_NUMBER = 5; private com.google.protobuf.ByteString inputAudio_; /** *
   * Optional. The natural language speech audio to be processed. This field
   * should be populated iff `query_input` is set to an input audio config.
   * A single request can contain up to 1 minute of speech audio data.
   * 
* * bytes input_audio = 5; */ public com.google.protobuf.ByteString getInputAudio() { return inputAudio_; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!getSessionBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, session_); } if (queryParams_ != null) { output.writeMessage(2, getQueryParams()); } if (queryInput_ != null) { output.writeMessage(3, getQueryInput()); } if (!inputAudio_.isEmpty()) { output.writeBytes(5, inputAudio_); } unknownFields.writeTo(output); } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getSessionBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, session_); } if (queryParams_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getQueryParams()); } if (queryInput_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, getQueryInput()); } if (!inputAudio_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(5, inputAudio_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.cloud.dialogflow.v2.DetectIntentRequest)) { return super.equals(obj); } com.google.cloud.dialogflow.v2.DetectIntentRequest other = (com.google.cloud.dialogflow.v2.DetectIntentRequest) obj; boolean result = true; result = result && getSession() .equals(other.getSession()); result = result && (hasQueryParams() == other.hasQueryParams()); if (hasQueryParams()) { result = result && getQueryParams() .equals(other.getQueryParams()); } result = result && (hasQueryInput() == other.hasQueryInput()); if (hasQueryInput()) { result = result && getQueryInput() .equals(other.getQueryInput()); } result = result && getInputAudio() .equals(other.getInputAudio()); result = result && unknownFields.equals(other.unknownFields); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + SESSION_FIELD_NUMBER; hash = (53 * hash) + getSession().hashCode(); if (hasQueryParams()) { hash = (37 * hash) + QUERY_PARAMS_FIELD_NUMBER; hash = (53 * hash) + getQueryParams().hashCode(); } if (hasQueryInput()) { hash = (37 * hash) + QUERY_INPUT_FIELD_NUMBER; hash = (53 * hash) + getQueryInput().hashCode(); } hash = (37 * hash) + INPUT_AUDIO_FIELD_NUMBER; hash = (53 * hash) + getInputAudio().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.dialogflow.v2.DetectIntentRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.DetectIntentRequest 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.DetectIntentRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.DetectIntentRequest 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.DetectIntentRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.DetectIntentRequest 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.DetectIntentRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.DetectIntentRequest 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.DetectIntentRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.DetectIntentRequest 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.DetectIntentRequest 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.DetectIntentRequest parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.cloud.dialogflow.v2.DetectIntentRequest prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } 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 request to detect user's intent.
   * 
* * Protobuf type {@code google.cloud.dialogflow.v2.DetectIntentRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2.DetectIntentRequest) com.google.cloud.dialogflow.v2.DetectIntentRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_DetectIntentRequest_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_DetectIntentRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.v2.DetectIntentRequest.class, com.google.cloud.dialogflow.v2.DetectIntentRequest.Builder.class); } // Construct using com.google.cloud.dialogflow.v2.DetectIntentRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } public Builder clear() { super.clear(); session_ = ""; if (queryParamsBuilder_ == null) { queryParams_ = null; } else { queryParams_ = null; queryParamsBuilder_ = null; } if (queryInputBuilder_ == null) { queryInput_ = null; } else { queryInput_ = null; queryInputBuilder_ = null; } inputAudio_ = com.google.protobuf.ByteString.EMPTY; return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_DetectIntentRequest_descriptor; } public com.google.cloud.dialogflow.v2.DetectIntentRequest getDefaultInstanceForType() { return com.google.cloud.dialogflow.v2.DetectIntentRequest.getDefaultInstance(); } public com.google.cloud.dialogflow.v2.DetectIntentRequest build() { com.google.cloud.dialogflow.v2.DetectIntentRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public com.google.cloud.dialogflow.v2.DetectIntentRequest buildPartial() { com.google.cloud.dialogflow.v2.DetectIntentRequest result = new com.google.cloud.dialogflow.v2.DetectIntentRequest(this); result.session_ = session_; if (queryParamsBuilder_ == null) { result.queryParams_ = queryParams_; } else { result.queryParams_ = queryParamsBuilder_.build(); } if (queryInputBuilder_ == null) { result.queryInput_ = queryInput_; } else { result.queryInput_ = queryInputBuilder_.build(); } result.inputAudio_ = inputAudio_; onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.setField(field, value); } public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.cloud.dialogflow.v2.DetectIntentRequest) { return mergeFrom((com.google.cloud.dialogflow.v2.DetectIntentRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.dialogflow.v2.DetectIntentRequest other) { if (other == com.google.cloud.dialogflow.v2.DetectIntentRequest.getDefaultInstance()) return this; if (!other.getSession().isEmpty()) { session_ = other.session_; onChanged(); } if (other.hasQueryParams()) { mergeQueryParams(other.getQueryParams()); } if (other.hasQueryInput()) { mergeQueryInput(other.getQueryInput()); } if (other.getInputAudio() != com.google.protobuf.ByteString.EMPTY) { setInputAudio(other.getInputAudio()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.cloud.dialogflow.v2.DetectIntentRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.cloud.dialogflow.v2.DetectIntentRequest) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private java.lang.Object session_ = ""; /** *
     * Required. The name of the session this query is sent to. Format:
     * `projects/<Project ID>/agent/sessions/<Session ID>`. It's up to the API
     * caller to choose an appropriate session ID. It can be a random number or
     * some type of user identifier (preferably hashed). The length of the session
     * ID must not exceed 36 bytes.
     * 
* * string session = 1; */ public java.lang.String getSession() { java.lang.Object ref = session_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); session_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Required. The name of the session this query is sent to. Format:
     * `projects/<Project ID>/agent/sessions/<Session ID>`. It's up to the API
     * caller to choose an appropriate session ID. It can be a random number or
     * some type of user identifier (preferably hashed). The length of the session
     * ID must not exceed 36 bytes.
     * 
* * string session = 1; */ public com.google.protobuf.ByteString getSessionBytes() { java.lang.Object ref = session_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); session_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Required. The name of the session this query is sent to. Format:
     * `projects/<Project ID>/agent/sessions/<Session ID>`. It's up to the API
     * caller to choose an appropriate session ID. It can be a random number or
     * some type of user identifier (preferably hashed). The length of the session
     * ID must not exceed 36 bytes.
     * 
* * string session = 1; */ public Builder setSession( java.lang.String value) { if (value == null) { throw new NullPointerException(); } session_ = value; onChanged(); return this; } /** *
     * Required. The name of the session this query is sent to. Format:
     * `projects/<Project ID>/agent/sessions/<Session ID>`. It's up to the API
     * caller to choose an appropriate session ID. It can be a random number or
     * some type of user identifier (preferably hashed). The length of the session
     * ID must not exceed 36 bytes.
     * 
* * string session = 1; */ public Builder clearSession() { session_ = getDefaultInstance().getSession(); onChanged(); return this; } /** *
     * Required. The name of the session this query is sent to. Format:
     * `projects/<Project ID>/agent/sessions/<Session ID>`. It's up to the API
     * caller to choose an appropriate session ID. It can be a random number or
     * some type of user identifier (preferably hashed). The length of the session
     * ID must not exceed 36 bytes.
     * 
* * string session = 1; */ public Builder setSessionBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); session_ = value; onChanged(); return this; } private com.google.cloud.dialogflow.v2.QueryParameters queryParams_ = null; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.QueryParameters, com.google.cloud.dialogflow.v2.QueryParameters.Builder, com.google.cloud.dialogflow.v2.QueryParametersOrBuilder> queryParamsBuilder_; /** *
     * Optional. The parameters of this query.
     * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public boolean hasQueryParams() { return queryParamsBuilder_ != null || queryParams_ != null; } /** *
     * Optional. The parameters of this query.
     * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public com.google.cloud.dialogflow.v2.QueryParameters getQueryParams() { if (queryParamsBuilder_ == null) { return queryParams_ == null ? com.google.cloud.dialogflow.v2.QueryParameters.getDefaultInstance() : queryParams_; } else { return queryParamsBuilder_.getMessage(); } } /** *
     * Optional. The parameters of this query.
     * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public Builder setQueryParams(com.google.cloud.dialogflow.v2.QueryParameters value) { if (queryParamsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } queryParams_ = value; onChanged(); } else { queryParamsBuilder_.setMessage(value); } return this; } /** *
     * Optional. The parameters of this query.
     * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public Builder setQueryParams( com.google.cloud.dialogflow.v2.QueryParameters.Builder builderForValue) { if (queryParamsBuilder_ == null) { queryParams_ = builderForValue.build(); onChanged(); } else { queryParamsBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Optional. The parameters of this query.
     * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public Builder mergeQueryParams(com.google.cloud.dialogflow.v2.QueryParameters value) { if (queryParamsBuilder_ == null) { if (queryParams_ != null) { queryParams_ = com.google.cloud.dialogflow.v2.QueryParameters.newBuilder(queryParams_).mergeFrom(value).buildPartial(); } else { queryParams_ = value; } onChanged(); } else { queryParamsBuilder_.mergeFrom(value); } return this; } /** *
     * Optional. The parameters of this query.
     * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public Builder clearQueryParams() { if (queryParamsBuilder_ == null) { queryParams_ = null; onChanged(); } else { queryParams_ = null; queryParamsBuilder_ = null; } return this; } /** *
     * Optional. The parameters of this query.
     * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public com.google.cloud.dialogflow.v2.QueryParameters.Builder getQueryParamsBuilder() { onChanged(); return getQueryParamsFieldBuilder().getBuilder(); } /** *
     * Optional. The parameters of this query.
     * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ public com.google.cloud.dialogflow.v2.QueryParametersOrBuilder getQueryParamsOrBuilder() { if (queryParamsBuilder_ != null) { return queryParamsBuilder_.getMessageOrBuilder(); } else { return queryParams_ == null ? com.google.cloud.dialogflow.v2.QueryParameters.getDefaultInstance() : queryParams_; } } /** *
     * Optional. The parameters of this query.
     * 
* * .google.cloud.dialogflow.v2.QueryParameters query_params = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.QueryParameters, com.google.cloud.dialogflow.v2.QueryParameters.Builder, com.google.cloud.dialogflow.v2.QueryParametersOrBuilder> getQueryParamsFieldBuilder() { if (queryParamsBuilder_ == null) { queryParamsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.QueryParameters, com.google.cloud.dialogflow.v2.QueryParameters.Builder, com.google.cloud.dialogflow.v2.QueryParametersOrBuilder>( getQueryParams(), getParentForChildren(), isClean()); queryParams_ = null; } return queryParamsBuilder_; } private com.google.cloud.dialogflow.v2.QueryInput queryInput_ = null; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.QueryInput, com.google.cloud.dialogflow.v2.QueryInput.Builder, com.google.cloud.dialogflow.v2.QueryInputOrBuilder> queryInputBuilder_; /** *
     * Required. The input specification. It can be set to:
     * 1.  an audio config
     *     which instructs the speech recognizer how to process the speech audio,
     * 2.  a conversational query in the form of text, or
     * 3.  an event that specifies which intent to trigger.
     * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public boolean hasQueryInput() { return queryInputBuilder_ != null || queryInput_ != null; } /** *
     * Required. The input specification. It can be set to:
     * 1.  an audio config
     *     which instructs the speech recognizer how to process the speech audio,
     * 2.  a conversational query in the form of text, or
     * 3.  an event that specifies which intent to trigger.
     * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public com.google.cloud.dialogflow.v2.QueryInput getQueryInput() { if (queryInputBuilder_ == null) { return queryInput_ == null ? com.google.cloud.dialogflow.v2.QueryInput.getDefaultInstance() : queryInput_; } else { return queryInputBuilder_.getMessage(); } } /** *
     * Required. The input specification. It can be set to:
     * 1.  an audio config
     *     which instructs the speech recognizer how to process the speech audio,
     * 2.  a conversational query in the form of text, or
     * 3.  an event that specifies which intent to trigger.
     * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public Builder setQueryInput(com.google.cloud.dialogflow.v2.QueryInput value) { if (queryInputBuilder_ == null) { if (value == null) { throw new NullPointerException(); } queryInput_ = value; onChanged(); } else { queryInputBuilder_.setMessage(value); } return this; } /** *
     * Required. The input specification. It can be set to:
     * 1.  an audio config
     *     which instructs the speech recognizer how to process the speech audio,
     * 2.  a conversational query in the form of text, or
     * 3.  an event that specifies which intent to trigger.
     * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public Builder setQueryInput( com.google.cloud.dialogflow.v2.QueryInput.Builder builderForValue) { if (queryInputBuilder_ == null) { queryInput_ = builderForValue.build(); onChanged(); } else { queryInputBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Required. The input specification. It can be set to:
     * 1.  an audio config
     *     which instructs the speech recognizer how to process the speech audio,
     * 2.  a conversational query in the form of text, or
     * 3.  an event that specifies which intent to trigger.
     * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public Builder mergeQueryInput(com.google.cloud.dialogflow.v2.QueryInput value) { if (queryInputBuilder_ == null) { if (queryInput_ != null) { queryInput_ = com.google.cloud.dialogflow.v2.QueryInput.newBuilder(queryInput_).mergeFrom(value).buildPartial(); } else { queryInput_ = value; } onChanged(); } else { queryInputBuilder_.mergeFrom(value); } return this; } /** *
     * Required. The input specification. It can be set to:
     * 1.  an audio config
     *     which instructs the speech recognizer how to process the speech audio,
     * 2.  a conversational query in the form of text, or
     * 3.  an event that specifies which intent to trigger.
     * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public Builder clearQueryInput() { if (queryInputBuilder_ == null) { queryInput_ = null; onChanged(); } else { queryInput_ = null; queryInputBuilder_ = null; } return this; } /** *
     * Required. The input specification. It can be set to:
     * 1.  an audio config
     *     which instructs the speech recognizer how to process the speech audio,
     * 2.  a conversational query in the form of text, or
     * 3.  an event that specifies which intent to trigger.
     * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public com.google.cloud.dialogflow.v2.QueryInput.Builder getQueryInputBuilder() { onChanged(); return getQueryInputFieldBuilder().getBuilder(); } /** *
     * Required. The input specification. It can be set to:
     * 1.  an audio config
     *     which instructs the speech recognizer how to process the speech audio,
     * 2.  a conversational query in the form of text, or
     * 3.  an event that specifies which intent to trigger.
     * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ public com.google.cloud.dialogflow.v2.QueryInputOrBuilder getQueryInputOrBuilder() { if (queryInputBuilder_ != null) { return queryInputBuilder_.getMessageOrBuilder(); } else { return queryInput_ == null ? com.google.cloud.dialogflow.v2.QueryInput.getDefaultInstance() : queryInput_; } } /** *
     * Required. The input specification. It can be set to:
     * 1.  an audio config
     *     which instructs the speech recognizer how to process the speech audio,
     * 2.  a conversational query in the form of text, or
     * 3.  an event that specifies which intent to trigger.
     * 
* * .google.cloud.dialogflow.v2.QueryInput query_input = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.QueryInput, com.google.cloud.dialogflow.v2.QueryInput.Builder, com.google.cloud.dialogflow.v2.QueryInputOrBuilder> getQueryInputFieldBuilder() { if (queryInputBuilder_ == null) { queryInputBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.QueryInput, com.google.cloud.dialogflow.v2.QueryInput.Builder, com.google.cloud.dialogflow.v2.QueryInputOrBuilder>( getQueryInput(), getParentForChildren(), isClean()); queryInput_ = null; } return queryInputBuilder_; } private com.google.protobuf.ByteString inputAudio_ = com.google.protobuf.ByteString.EMPTY; /** *
     * Optional. The natural language speech audio to be processed. This field
     * should be populated iff `query_input` is set to an input audio config.
     * A single request can contain up to 1 minute of speech audio data.
     * 
* * bytes input_audio = 5; */ public com.google.protobuf.ByteString getInputAudio() { return inputAudio_; } /** *
     * Optional. The natural language speech audio to be processed. This field
     * should be populated iff `query_input` is set to an input audio config.
     * A single request can contain up to 1 minute of speech audio data.
     * 
* * bytes input_audio = 5; */ public Builder setInputAudio(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } inputAudio_ = value; onChanged(); return this; } /** *
     * Optional. The natural language speech audio to be processed. This field
     * should be populated iff `query_input` is set to an input audio config.
     * A single request can contain up to 1 minute of speech audio data.
     * 
* * bytes input_audio = 5; */ public Builder clearInputAudio() { inputAudio_ = getDefaultInstance().getInputAudio(); onChanged(); return this; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFieldsProto3(unknownFields); } public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.cloud.dialogflow.v2.DetectIntentRequest) } // @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2.DetectIntentRequest) private static final com.google.cloud.dialogflow.v2.DetectIntentRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2.DetectIntentRequest(); } public static com.google.cloud.dialogflow.v2.DetectIntentRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public DetectIntentRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new DetectIntentRequest(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } public com.google.cloud.dialogflow.v2.DetectIntentRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy