com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest 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-v2beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2beta1
/*
* 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/v2beta1/conversation.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.v2beta1;
/**
*
*
*
* The request message for
* [Conversations.SearchKnowledge][google.cloud.dialogflow.v2beta1.Conversations.SearchKnowledge].
*
*
* Protobuf type {@code google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest}
*/
public final class SearchKnowledgeRequest extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest)
SearchKnowledgeRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use SearchKnowledgeRequest.newBuilder() to construct.
private SearchKnowledgeRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SearchKnowledgeRequest() {
parent_ = "";
conversationProfile_ = "";
sessionId_ = "";
conversation_ = "";
latestMessage_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new SearchKnowledgeRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2beta1.ConversationProto
.internal_static_google_cloud_dialogflow_v2beta1_SearchKnowledgeRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2beta1.ConversationProto
.internal_static_google_cloud_dialogflow_v2beta1_SearchKnowledgeRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest.class,
com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest.Builder.class);
}
private int bitField0_;
public static final int PARENT_FIELD_NUMBER = 6;
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
/**
*
*
*
* Required. The parent resource contains the conversation profile
* Format: 'projects/<Project ID>' or `projects/<Project
* ID>/locations/<Location ID>`.
*
*
* string parent = 6 [(.google.api.field_behavior) = REQUIRED];
*
* @return The parent.
*/
@java.lang.Override
public java.lang.String getParent() {
java.lang.Object ref = parent_;
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();
parent_ = s;
return s;
}
}
/**
*
*
*
* Required. The parent resource contains the conversation profile
* Format: 'projects/<Project ID>' or `projects/<Project
* ID>/locations/<Location ID>`.
*
*
* string parent = 6 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for parent.
*/
@java.lang.Override
public com.google.protobuf.ByteString getParentBytes() {
java.lang.Object ref = parent_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
parent_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int QUERY_FIELD_NUMBER = 1;
private com.google.cloud.dialogflow.v2beta1.TextInput query_;
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the query field is set.
*/
@java.lang.Override
public boolean hasQuery() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The query.
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2beta1.TextInput getQuery() {
return query_ == null
? com.google.cloud.dialogflow.v2beta1.TextInput.getDefaultInstance()
: query_;
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
@java.lang.Override
public com.google.cloud.dialogflow.v2beta1.TextInputOrBuilder getQueryOrBuilder() {
return query_ == null
? com.google.cloud.dialogflow.v2beta1.TextInput.getDefaultInstance()
: query_;
}
public static final int CONVERSATION_PROFILE_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object conversationProfile_ = "";
/**
*
*
*
* Required. The conversation profile used to configure the search.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`.
*
*
*
* string conversation_profile = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The conversationProfile.
*/
@java.lang.Override
public java.lang.String getConversationProfile() {
java.lang.Object ref = conversationProfile_;
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();
conversationProfile_ = s;
return s;
}
}
/**
*
*
*
* Required. The conversation profile used to configure the search.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`.
*
*
*
* string conversation_profile = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for conversationProfile.
*/
@java.lang.Override
public com.google.protobuf.ByteString getConversationProfileBytes() {
java.lang.Object ref = conversationProfile_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
conversationProfile_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int SESSION_ID_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object sessionId_ = "";
/**
*
*
*
* Required. The ID of the search session.
* The session_id can be combined with Dialogflow V3 Agent ID retrieved from
* conversation profile or on its own to identify a search session. The search
* history of the same session will impact the search result. It's up to the
* API caller to choose an appropriate `Session ID`. It can be a random number
* or some type of session identifiers (preferably hashed). The length must
* not exceed 36 characters.
*
*
* string session_id = 3 [(.google.api.field_behavior) = REQUIRED];
*
* @return The sessionId.
*/
@java.lang.Override
public java.lang.String getSessionId() {
java.lang.Object ref = sessionId_;
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();
sessionId_ = s;
return s;
}
}
/**
*
*
*
* Required. The ID of the search session.
* The session_id can be combined with Dialogflow V3 Agent ID retrieved from
* conversation profile or on its own to identify a search session. The search
* history of the same session will impact the search result. It's up to the
* API caller to choose an appropriate `Session ID`. It can be a random number
* or some type of session identifiers (preferably hashed). The length must
* not exceed 36 characters.
*
*
* string session_id = 3 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for sessionId.
*/
@java.lang.Override
public com.google.protobuf.ByteString getSessionIdBytes() {
java.lang.Object ref = sessionId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
sessionId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int CONVERSATION_FIELD_NUMBER = 4;
@SuppressWarnings("serial")
private volatile java.lang.Object conversation_ = "";
/**
*
*
*
* Optional. The conversation (between human agent and end user) where the
* search request is triggered. Format: `projects/<Project
* ID>/locations/<Location ID>/conversations/<Conversation ID>`.
*
*
*
* string conversation = 4 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The conversation.
*/
@java.lang.Override
public java.lang.String getConversation() {
java.lang.Object ref = conversation_;
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();
conversation_ = s;
return s;
}
}
/**
*
*
*
* Optional. The conversation (between human agent and end user) where the
* search request is triggered. Format: `projects/<Project
* ID>/locations/<Location ID>/conversations/<Conversation ID>`.
*
*
*
* string conversation = 4 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for conversation.
*/
@java.lang.Override
public com.google.protobuf.ByteString getConversationBytes() {
java.lang.Object ref = conversation_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
conversation_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int LATEST_MESSAGE_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private volatile java.lang.Object latestMessage_ = "";
/**
*
*
*
* Optional. The name of the latest conversation message when the request is
* triggered.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversations/<Conversation ID>/messages/<Message ID>`.
*
*
*
* string latest_message = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The latestMessage.
*/
@java.lang.Override
public java.lang.String getLatestMessage() {
java.lang.Object ref = latestMessage_;
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();
latestMessage_ = s;
return s;
}
}
/**
*
*
*
* Optional. The name of the latest conversation message when the request is
* triggered.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversations/<Conversation ID>/messages/<Message ID>`.
*
*
*
* string latest_message = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for latestMessage.
*/
@java.lang.Override
public com.google.protobuf.ByteString getLatestMessageBytes() {
java.lang.Object ref = latestMessage_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
latestMessage_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getQuery());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(conversationProfile_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, conversationProfile_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sessionId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, sessionId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(conversation_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, conversation_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(latestMessage_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, latestMessage_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, parent_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getQuery());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(conversationProfile_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, conversationProfile_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sessionId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, sessionId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(conversation_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, conversation_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(latestMessage_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, latestMessage_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(parent_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, parent_);
}
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.v2beta1.SearchKnowledgeRequest)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest other =
(com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest) obj;
if (!getParent().equals(other.getParent())) return false;
if (hasQuery() != other.hasQuery()) return false;
if (hasQuery()) {
if (!getQuery().equals(other.getQuery())) return false;
}
if (!getConversationProfile().equals(other.getConversationProfile())) return false;
if (!getSessionId().equals(other.getSessionId())) return false;
if (!getConversation().equals(other.getConversation())) return false;
if (!getLatestMessage().equals(other.getLatestMessage())) 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) + PARENT_FIELD_NUMBER;
hash = (53 * hash) + getParent().hashCode();
if (hasQuery()) {
hash = (37 * hash) + QUERY_FIELD_NUMBER;
hash = (53 * hash) + getQuery().hashCode();
}
hash = (37 * hash) + CONVERSATION_PROFILE_FIELD_NUMBER;
hash = (53 * hash) + getConversationProfile().hashCode();
hash = (37 * hash) + SESSION_ID_FIELD_NUMBER;
hash = (53 * hash) + getSessionId().hashCode();
hash = (37 * hash) + CONVERSATION_FIELD_NUMBER;
hash = (53 * hash) + getConversation().hashCode();
hash = (37 * hash) + LATEST_MESSAGE_FIELD_NUMBER;
hash = (53 * hash) + getLatestMessage().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest 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.v2beta1.SearchKnowledgeRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest 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.v2beta1.SearchKnowledgeRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest 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.v2beta1.SearchKnowledgeRequest parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest 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.v2beta1.SearchKnowledgeRequest parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest 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.v2beta1.SearchKnowledgeRequest 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 request message for
* [Conversations.SearchKnowledge][google.cloud.dialogflow.v2beta1.Conversations.SearchKnowledge].
*
*
* Protobuf type {@code google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest)
com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2beta1.ConversationProto
.internal_static_google_cloud_dialogflow_v2beta1_SearchKnowledgeRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2beta1.ConversationProto
.internal_static_google_cloud_dialogflow_v2beta1_SearchKnowledgeRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest.class,
com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest.Builder.class);
}
// Construct using com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getQueryFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
parent_ = "";
query_ = null;
if (queryBuilder_ != null) {
queryBuilder_.dispose();
queryBuilder_ = null;
}
conversationProfile_ = "";
sessionId_ = "";
conversation_ = "";
latestMessage_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.v2beta1.ConversationProto
.internal_static_google_cloud_dialogflow_v2beta1_SearchKnowledgeRequest_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest getDefaultInstanceForType() {
return com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest build() {
com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest buildPartial() {
com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest result =
new com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.parent_ = parent_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.query_ = queryBuilder_ == null ? query_ : queryBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.conversationProfile_ = conversationProfile_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.sessionId_ = sessionId_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.conversation_ = conversation_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.latestMessage_ = latestMessage_;
}
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.v2beta1.SearchKnowledgeRequest) {
return mergeFrom((com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest other) {
if (other == com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest.getDefaultInstance())
return this;
if (!other.getParent().isEmpty()) {
parent_ = other.parent_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasQuery()) {
mergeQuery(other.getQuery());
}
if (!other.getConversationProfile().isEmpty()) {
conversationProfile_ = other.conversationProfile_;
bitField0_ |= 0x00000004;
onChanged();
}
if (!other.getSessionId().isEmpty()) {
sessionId_ = other.sessionId_;
bitField0_ |= 0x00000008;
onChanged();
}
if (!other.getConversation().isEmpty()) {
conversation_ = other.conversation_;
bitField0_ |= 0x00000010;
onChanged();
}
if (!other.getLatestMessage().isEmpty()) {
latestMessage_ = other.latestMessage_;
bitField0_ |= 0x00000020;
onChanged();
}
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:
{
input.readMessage(getQueryFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 10
case 18:
{
conversationProfile_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 18
case 26:
{
sessionId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000008;
break;
} // case 26
case 34:
{
conversation_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000010;
break;
} // case 34
case 42:
{
latestMessage_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000020;
break;
} // case 42
case 50:
{
parent_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 50
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 parent_ = "";
/**
*
*
*
* Required. The parent resource contains the conversation profile
* Format: 'projects/<Project ID>' or `projects/<Project
* ID>/locations/<Location ID>`.
*
*
* string parent = 6 [(.google.api.field_behavior) = REQUIRED];
*
* @return The parent.
*/
public java.lang.String getParent() {
java.lang.Object ref = parent_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
parent_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The parent resource contains the conversation profile
* Format: 'projects/<Project ID>' or `projects/<Project
* ID>/locations/<Location ID>`.
*
*
* string parent = 6 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for parent.
*/
public com.google.protobuf.ByteString getParentBytes() {
java.lang.Object ref = parent_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
parent_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The parent resource contains the conversation profile
* Format: 'projects/<Project ID>' or `projects/<Project
* ID>/locations/<Location ID>`.
*
*
* string parent = 6 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The parent to set.
* @return This builder for chaining.
*/
public Builder setParent(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
parent_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Required. The parent resource contains the conversation profile
* Format: 'projects/<Project ID>' or `projects/<Project
* ID>/locations/<Location ID>`.
*
*
* string parent = 6 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearParent() {
parent_ = getDefaultInstance().getParent();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Required. The parent resource contains the conversation profile
* Format: 'projects/<Project ID>' or `projects/<Project
* ID>/locations/<Location ID>`.
*
*
* string parent = 6 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The bytes for parent to set.
* @return This builder for chaining.
*/
public Builder setParentBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
parent_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private com.google.cloud.dialogflow.v2beta1.TextInput query_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2beta1.TextInput,
com.google.cloud.dialogflow.v2beta1.TextInput.Builder,
com.google.cloud.dialogflow.v2beta1.TextInputOrBuilder>
queryBuilder_;
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the query field is set.
*/
public boolean hasQuery() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The query.
*/
public com.google.cloud.dialogflow.v2beta1.TextInput getQuery() {
if (queryBuilder_ == null) {
return query_ == null
? com.google.cloud.dialogflow.v2beta1.TextInput.getDefaultInstance()
: query_;
} else {
return queryBuilder_.getMessage();
}
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder setQuery(com.google.cloud.dialogflow.v2beta1.TextInput value) {
if (queryBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
query_ = value;
} else {
queryBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder setQuery(com.google.cloud.dialogflow.v2beta1.TextInput.Builder builderForValue) {
if (queryBuilder_ == null) {
query_ = builderForValue.build();
} else {
queryBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder mergeQuery(com.google.cloud.dialogflow.v2beta1.TextInput value) {
if (queryBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)
&& query_ != null
&& query_ != com.google.cloud.dialogflow.v2beta1.TextInput.getDefaultInstance()) {
getQueryBuilder().mergeFrom(value);
} else {
query_ = value;
}
} else {
queryBuilder_.mergeFrom(value);
}
if (query_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder clearQuery() {
bitField0_ = (bitField0_ & ~0x00000002);
query_ = null;
if (queryBuilder_ != null) {
queryBuilder_.dispose();
queryBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public com.google.cloud.dialogflow.v2beta1.TextInput.Builder getQueryBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getQueryFieldBuilder().getBuilder();
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public com.google.cloud.dialogflow.v2beta1.TextInputOrBuilder getQueryOrBuilder() {
if (queryBuilder_ != null) {
return queryBuilder_.getMessageOrBuilder();
} else {
return query_ == null
? com.google.cloud.dialogflow.v2beta1.TextInput.getDefaultInstance()
: query_;
}
}
/**
*
*
*
* Required. The natural language text query for knowledge search.
*
*
*
* .google.cloud.dialogflow.v2beta1.TextInput query = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2beta1.TextInput,
com.google.cloud.dialogflow.v2beta1.TextInput.Builder,
com.google.cloud.dialogflow.v2beta1.TextInputOrBuilder>
getQueryFieldBuilder() {
if (queryBuilder_ == null) {
queryBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2beta1.TextInput,
com.google.cloud.dialogflow.v2beta1.TextInput.Builder,
com.google.cloud.dialogflow.v2beta1.TextInputOrBuilder>(
getQuery(), getParentForChildren(), isClean());
query_ = null;
}
return queryBuilder_;
}
private java.lang.Object conversationProfile_ = "";
/**
*
*
*
* Required. The conversation profile used to configure the search.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`.
*
*
*
* string conversation_profile = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The conversationProfile.
*/
public java.lang.String getConversationProfile() {
java.lang.Object ref = conversationProfile_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
conversationProfile_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The conversation profile used to configure the search.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`.
*
*
*
* string conversation_profile = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for conversationProfile.
*/
public com.google.protobuf.ByteString getConversationProfileBytes() {
java.lang.Object ref = conversationProfile_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
conversationProfile_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The conversation profile used to configure the search.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`.
*
*
*
* string conversation_profile = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @param value The conversationProfile to set.
* @return This builder for chaining.
*/
public Builder setConversationProfile(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
conversationProfile_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Required. The conversation profile used to configure the search.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`.
*
*
*
* string conversation_profile = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return This builder for chaining.
*/
public Builder clearConversationProfile() {
conversationProfile_ = getDefaultInstance().getConversationProfile();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
*
*
*
* Required. The conversation profile used to configure the search.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversationProfiles/<Conversation Profile ID>`.
*
*
*
* string conversation_profile = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @param value The bytes for conversationProfile to set.
* @return This builder for chaining.
*/
public Builder setConversationProfileBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
conversationProfile_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
private java.lang.Object sessionId_ = "";
/**
*
*
*
* Required. The ID of the search session.
* The session_id can be combined with Dialogflow V3 Agent ID retrieved from
* conversation profile or on its own to identify a search session. The search
* history of the same session will impact the search result. It's up to the
* API caller to choose an appropriate `Session ID`. It can be a random number
* or some type of session identifiers (preferably hashed). The length must
* not exceed 36 characters.
*
*
* string session_id = 3 [(.google.api.field_behavior) = REQUIRED];
*
* @return The sessionId.
*/
public java.lang.String getSessionId() {
java.lang.Object ref = sessionId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sessionId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The ID of the search session.
* The session_id can be combined with Dialogflow V3 Agent ID retrieved from
* conversation profile or on its own to identify a search session. The search
* history of the same session will impact the search result. It's up to the
* API caller to choose an appropriate `Session ID`. It can be a random number
* or some type of session identifiers (preferably hashed). The length must
* not exceed 36 characters.
*
*
* string session_id = 3 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for sessionId.
*/
public com.google.protobuf.ByteString getSessionIdBytes() {
java.lang.Object ref = sessionId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
sessionId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The ID of the search session.
* The session_id can be combined with Dialogflow V3 Agent ID retrieved from
* conversation profile or on its own to identify a search session. The search
* history of the same session will impact the search result. It's up to the
* API caller to choose an appropriate `Session ID`. It can be a random number
* or some type of session identifiers (preferably hashed). The length must
* not exceed 36 characters.
*
*
* string session_id = 3 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The sessionId to set.
* @return This builder for chaining.
*/
public Builder setSessionId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
sessionId_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Required. The ID of the search session.
* The session_id can be combined with Dialogflow V3 Agent ID retrieved from
* conversation profile or on its own to identify a search session. The search
* history of the same session will impact the search result. It's up to the
* API caller to choose an appropriate `Session ID`. It can be a random number
* or some type of session identifiers (preferably hashed). The length must
* not exceed 36 characters.
*
*
* string session_id = 3 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearSessionId() {
sessionId_ = getDefaultInstance().getSessionId();
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
return this;
}
/**
*
*
*
* Required. The ID of the search session.
* The session_id can be combined with Dialogflow V3 Agent ID retrieved from
* conversation profile or on its own to identify a search session. The search
* history of the same session will impact the search result. It's up to the
* API caller to choose an appropriate `Session ID`. It can be a random number
* or some type of session identifiers (preferably hashed). The length must
* not exceed 36 characters.
*
*
* string session_id = 3 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The bytes for sessionId to set.
* @return This builder for chaining.
*/
public Builder setSessionIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
sessionId_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
private java.lang.Object conversation_ = "";
/**
*
*
*
* Optional. The conversation (between human agent and end user) where the
* search request is triggered. Format: `projects/<Project
* ID>/locations/<Location ID>/conversations/<Conversation ID>`.
*
*
*
* string conversation = 4 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The conversation.
*/
public java.lang.String getConversation() {
java.lang.Object ref = conversation_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
conversation_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Optional. The conversation (between human agent and end user) where the
* search request is triggered. Format: `projects/<Project
* ID>/locations/<Location ID>/conversations/<Conversation ID>`.
*
*
*
* string conversation = 4 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for conversation.
*/
public com.google.protobuf.ByteString getConversationBytes() {
java.lang.Object ref = conversation_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
conversation_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Optional. The conversation (between human agent and end user) where the
* search request is triggered. Format: `projects/<Project
* ID>/locations/<Location ID>/conversations/<Conversation ID>`.
*
*
*
* string conversation = 4 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @param value The conversation to set.
* @return This builder for chaining.
*/
public Builder setConversation(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
conversation_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Optional. The conversation (between human agent and end user) where the
* search request is triggered. Format: `projects/<Project
* ID>/locations/<Location ID>/conversations/<Conversation ID>`.
*
*
*
* string conversation = 4 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return This builder for chaining.
*/
public Builder clearConversation() {
conversation_ = getDefaultInstance().getConversation();
bitField0_ = (bitField0_ & ~0x00000010);
onChanged();
return this;
}
/**
*
*
*
* Optional. The conversation (between human agent and end user) where the
* search request is triggered. Format: `projects/<Project
* ID>/locations/<Location ID>/conversations/<Conversation ID>`.
*
*
*
* string conversation = 4 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @param value The bytes for conversation to set.
* @return This builder for chaining.
*/
public Builder setConversationBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
conversation_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
private java.lang.Object latestMessage_ = "";
/**
*
*
*
* Optional. The name of the latest conversation message when the request is
* triggered.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversations/<Conversation ID>/messages/<Message ID>`.
*
*
*
* string latest_message = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The latestMessage.
*/
public java.lang.String getLatestMessage() {
java.lang.Object ref = latestMessage_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
latestMessage_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Optional. The name of the latest conversation message when the request is
* triggered.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversations/<Conversation ID>/messages/<Message ID>`.
*
*
*
* string latest_message = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for latestMessage.
*/
public com.google.protobuf.ByteString getLatestMessageBytes() {
java.lang.Object ref = latestMessage_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
latestMessage_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Optional. The name of the latest conversation message when the request is
* triggered.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversations/<Conversation ID>/messages/<Message ID>`.
*
*
*
* string latest_message = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @param value The latestMessage to set.
* @return This builder for chaining.
*/
public Builder setLatestMessage(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
latestMessage_ = value;
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*
* Optional. The name of the latest conversation message when the request is
* triggered.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversations/<Conversation ID>/messages/<Message ID>`.
*
*
*
* string latest_message = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return This builder for chaining.
*/
public Builder clearLatestMessage() {
latestMessage_ = getDefaultInstance().getLatestMessage();
bitField0_ = (bitField0_ & ~0x00000020);
onChanged();
return this;
}
/**
*
*
*
* Optional. The name of the latest conversation message when the request is
* triggered.
* Format: `projects/<Project ID>/locations/<Location
* ID>/conversations/<Conversation ID>/messages/<Message ID>`.
*
*
*
* string latest_message = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @param value The bytes for latestMessage to set.
* @return This builder for chaining.
*/
public Builder setLatestMessageBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
latestMessage_ = value;
bitField0_ |= 0x00000020;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest)
private static final com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest();
}
public static com.google.cloud.dialogflow.v2beta1.SearchKnowledgeRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SearchKnowledgeRequest 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.v2beta1.SearchKnowledgeRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}