com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/v2/intent.proto
package com.google.cloud.dialogflow.v2;
/**
*
*
*
* The request message for [Intents.BatchUpdateIntents][google.cloud.dialogflow.v2.Intents.BatchUpdateIntents].
*
*
* Protobuf type {@code google.cloud.dialogflow.v2.BatchUpdateIntentsRequest}
*/
public final class BatchUpdateIntentsRequest extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2.BatchUpdateIntentsRequest)
BatchUpdateIntentsRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use BatchUpdateIntentsRequest.newBuilder() to construct.
private BatchUpdateIntentsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private BatchUpdateIntentsRequest() {
parent_ = "";
languageCode_ = "";
intentView_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private BatchUpdateIntentsRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
java.lang.String s = input.readStringRequireUtf8();
parent_ = s;
break;
}
case 18:
{
java.lang.String s = input.readStringRequireUtf8();
intentBatchCase_ = 2;
intentBatch_ = s;
break;
}
case 26:
{
com.google.cloud.dialogflow.v2.IntentBatch.Builder subBuilder = null;
if (intentBatchCase_ == 3) {
subBuilder =
((com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_).toBuilder();
}
intentBatch_ =
input.readMessage(
com.google.cloud.dialogflow.v2.IntentBatch.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom((com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_);
intentBatch_ = subBuilder.buildPartial();
}
intentBatchCase_ = 3;
break;
}
case 34:
{
java.lang.String s = input.readStringRequireUtf8();
languageCode_ = s;
break;
}
case 42:
{
com.google.protobuf.FieldMask.Builder subBuilder = null;
if (updateMask_ != null) {
subBuilder = updateMask_.toBuilder();
}
updateMask_ =
input.readMessage(com.google.protobuf.FieldMask.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(updateMask_);
updateMask_ = subBuilder.buildPartial();
}
break;
}
case 48:
{
int rawValue = input.readEnum();
intentView_ = rawValue;
break;
}
default:
{
if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2.IntentProto
.internal_static_google_cloud_dialogflow_v2_BatchUpdateIntentsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2.IntentProto
.internal_static_google_cloud_dialogflow_v2_BatchUpdateIntentsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest.class,
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest.Builder.class);
}
private int intentBatchCase_ = 0;
private java.lang.Object intentBatch_;
public enum IntentBatchCase implements com.google.protobuf.Internal.EnumLite {
INTENT_BATCH_URI(2),
INTENT_BATCH_INLINE(3),
INTENTBATCH_NOT_SET(0);
private final int value;
private IntentBatchCase(int value) {
this.value = value;
}
/** @deprecated Use {@link #forNumber(int)} instead. */
@java.lang.Deprecated
public static IntentBatchCase valueOf(int value) {
return forNumber(value);
}
public static IntentBatchCase forNumber(int value) {
switch (value) {
case 2:
return INTENT_BATCH_URI;
case 3:
return INTENT_BATCH_INLINE;
case 0:
return INTENTBATCH_NOT_SET;
default:
return null;
}
}
public int getNumber() {
return this.value;
}
};
public IntentBatchCase getIntentBatchCase() {
return IntentBatchCase.forNumber(intentBatchCase_);
}
public static final int PARENT_FIELD_NUMBER = 1;
private volatile java.lang.Object parent_;
/**
*
*
*
* Required. The name of the agent to update or create intents in.
* Format: `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
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 name of the agent to update or create intents in.
* Format: `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
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 INTENT_BATCH_URI_FIELD_NUMBER = 2;
/**
*
*
*
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
*
*
* string intent_batch_uri = 2;
*/
public java.lang.String getIntentBatchUri() {
java.lang.Object ref = "";
if (intentBatchCase_ == 2) {
ref = intentBatch_;
}
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();
if (intentBatchCase_ == 2) {
intentBatch_ = s;
}
return s;
}
}
/**
*
*
*
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
*
*
* string intent_batch_uri = 2;
*/
public com.google.protobuf.ByteString getIntentBatchUriBytes() {
java.lang.Object ref = "";
if (intentBatchCase_ == 2) {
ref = intentBatch_;
}
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (intentBatchCase_ == 2) {
intentBatch_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int INTENT_BATCH_INLINE_FIELD_NUMBER = 3;
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public boolean hasIntentBatchInline() {
return intentBatchCase_ == 3;
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public com.google.cloud.dialogflow.v2.IntentBatch getIntentBatchInline() {
if (intentBatchCase_ == 3) {
return (com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_;
}
return com.google.cloud.dialogflow.v2.IntentBatch.getDefaultInstance();
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public com.google.cloud.dialogflow.v2.IntentBatchOrBuilder getIntentBatchInlineOrBuilder() {
if (intentBatchCase_ == 3) {
return (com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_;
}
return com.google.cloud.dialogflow.v2.IntentBatch.getDefaultInstance();
}
public static final int LANGUAGE_CODE_FIELD_NUMBER = 4;
private volatile java.lang.Object languageCode_;
/**
*
*
*
* Optional. The language of training phrases, parameters and rich messages
* defined in `intents`. If not specified, the agent's default language is
* used. [Many
* languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* are supported. Note: languages must be enabled in the agent before they can
* be used.
*
*
* string language_code = 4;
*/
public java.lang.String getLanguageCode() {
java.lang.Object ref = languageCode_;
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();
languageCode_ = s;
return s;
}
}
/**
*
*
*
* Optional. The language of training phrases, parameters and rich messages
* defined in `intents`. If not specified, the agent's default language is
* used. [Many
* languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* are supported. Note: languages must be enabled in the agent before they can
* be used.
*
*
* string language_code = 4;
*/
public com.google.protobuf.ByteString getLanguageCodeBytes() {
java.lang.Object ref = languageCode_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
languageCode_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int UPDATE_MASK_FIELD_NUMBER = 5;
private com.google.protobuf.FieldMask updateMask_;
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public boolean hasUpdateMask() {
return updateMask_ != null;
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public com.google.protobuf.FieldMask getUpdateMask() {
return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_;
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() {
return getUpdateMask();
}
public static final int INTENT_VIEW_FIELD_NUMBER = 6;
private int intentView_;
/**
*
*
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 6;
*/
public int getIntentViewValue() {
return intentView_;
}
/**
*
*
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 6;
*/
public com.google.cloud.dialogflow.v2.IntentView getIntentView() {
@SuppressWarnings("deprecation")
com.google.cloud.dialogflow.v2.IntentView result =
com.google.cloud.dialogflow.v2.IntentView.valueOf(intentView_);
return result == null ? com.google.cloud.dialogflow.v2.IntentView.UNRECOGNIZED : result;
}
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 (!getParentBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, parent_);
}
if (intentBatchCase_ == 2) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, intentBatch_);
}
if (intentBatchCase_ == 3) {
output.writeMessage(3, (com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_);
}
if (!getLanguageCodeBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, languageCode_);
}
if (updateMask_ != null) {
output.writeMessage(5, getUpdateMask());
}
if (intentView_
!= com.google.cloud.dialogflow.v2.IntentView.INTENT_VIEW_UNSPECIFIED.getNumber()) {
output.writeEnum(6, intentView_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getParentBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, parent_);
}
if (intentBatchCase_ == 2) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, intentBatch_);
}
if (intentBatchCase_ == 3) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
3, (com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_);
}
if (!getLanguageCodeBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, languageCode_);
}
if (updateMask_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getUpdateMask());
}
if (intentView_
!= com.google.cloud.dialogflow.v2.IntentView.INTENT_VIEW_UNSPECIFIED.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(6, intentView_);
}
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.BatchUpdateIntentsRequest)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest other =
(com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest) obj;
if (!getParent().equals(other.getParent())) return false;
if (!getLanguageCode().equals(other.getLanguageCode())) return false;
if (hasUpdateMask() != other.hasUpdateMask()) return false;
if (hasUpdateMask()) {
if (!getUpdateMask().equals(other.getUpdateMask())) return false;
}
if (intentView_ != other.intentView_) return false;
if (!getIntentBatchCase().equals(other.getIntentBatchCase())) return false;
switch (intentBatchCase_) {
case 2:
if (!getIntentBatchUri().equals(other.getIntentBatchUri())) return false;
break;
case 3:
if (!getIntentBatchInline().equals(other.getIntentBatchInline())) return false;
break;
case 0:
default:
}
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + PARENT_FIELD_NUMBER;
hash = (53 * hash) + getParent().hashCode();
hash = (37 * hash) + LANGUAGE_CODE_FIELD_NUMBER;
hash = (53 * hash) + getLanguageCode().hashCode();
if (hasUpdateMask()) {
hash = (37 * hash) + UPDATE_MASK_FIELD_NUMBER;
hash = (53 * hash) + getUpdateMask().hashCode();
}
hash = (37 * hash) + INTENT_VIEW_FIELD_NUMBER;
hash = (53 * hash) + intentView_;
switch (intentBatchCase_) {
case 2:
hash = (37 * hash) + INTENT_BATCH_URI_FIELD_NUMBER;
hash = (53 * hash) + getIntentBatchUri().hashCode();
break;
case 3:
hash = (37 * hash) + INTENT_BATCH_INLINE_FIELD_NUMBER;
hash = (53 * hash) + getIntentBatchInline().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest 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.BatchUpdateIntentsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest 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.BatchUpdateIntentsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest 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.BatchUpdateIntentsRequest parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest 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.BatchUpdateIntentsRequest parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest 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.BatchUpdateIntentsRequest 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.BatchUpdateIntentsRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest 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 [Intents.BatchUpdateIntents][google.cloud.dialogflow.v2.Intents.BatchUpdateIntents].
*
*
* Protobuf type {@code google.cloud.dialogflow.v2.BatchUpdateIntentsRequest}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2.BatchUpdateIntentsRequest)
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2.IntentProto
.internal_static_google_cloud_dialogflow_v2_BatchUpdateIntentsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2.IntentProto
.internal_static_google_cloud_dialogflow_v2_BatchUpdateIntentsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest.class,
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest.Builder.class);
}
// Construct using com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {}
}
@java.lang.Override
public Builder clear() {
super.clear();
parent_ = "";
languageCode_ = "";
if (updateMaskBuilder_ == null) {
updateMask_ = null;
} else {
updateMask_ = null;
updateMaskBuilder_ = null;
}
intentView_ = 0;
intentBatchCase_ = 0;
intentBatch_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.v2.IntentProto
.internal_static_google_cloud_dialogflow_v2_BatchUpdateIntentsRequest_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest getDefaultInstanceForType() {
return com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest build() {
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest buildPartial() {
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest result =
new com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest(this);
result.parent_ = parent_;
if (intentBatchCase_ == 2) {
result.intentBatch_ = intentBatch_;
}
if (intentBatchCase_ == 3) {
if (intentBatchInlineBuilder_ == null) {
result.intentBatch_ = intentBatch_;
} else {
result.intentBatch_ = intentBatchInlineBuilder_.build();
}
}
result.languageCode_ = languageCode_;
if (updateMaskBuilder_ == null) {
result.updateMask_ = updateMask_;
} else {
result.updateMask_ = updateMaskBuilder_.build();
}
result.intentView_ = intentView_;
result.intentBatchCase_ = intentBatchCase_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest) {
return mergeFrom((com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest other) {
if (other == com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest.getDefaultInstance())
return this;
if (!other.getParent().isEmpty()) {
parent_ = other.parent_;
onChanged();
}
if (!other.getLanguageCode().isEmpty()) {
languageCode_ = other.languageCode_;
onChanged();
}
if (other.hasUpdateMask()) {
mergeUpdateMask(other.getUpdateMask());
}
if (other.intentView_ != 0) {
setIntentViewValue(other.getIntentViewValue());
}
switch (other.getIntentBatchCase()) {
case INTENT_BATCH_URI:
{
intentBatchCase_ = 2;
intentBatch_ = other.intentBatch_;
onChanged();
break;
}
case INTENT_BATCH_INLINE:
{
mergeIntentBatchInline(other.getIntentBatchInline());
break;
}
case INTENTBATCH_NOT_SET:
{
break;
}
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage =
(com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int intentBatchCase_ = 0;
private java.lang.Object intentBatch_;
public IntentBatchCase getIntentBatchCase() {
return IntentBatchCase.forNumber(intentBatchCase_);
}
public Builder clearIntentBatch() {
intentBatchCase_ = 0;
intentBatch_ = null;
onChanged();
return this;
}
private java.lang.Object parent_ = "";
/**
*
*
*
* Required. The name of the agent to update or create intents in.
* Format: `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
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 name of the agent to update or create intents in.
* Format: `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
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 name of the agent to update or create intents in.
* Format: `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
public Builder setParent(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
parent_ = value;
onChanged();
return this;
}
/**
*
*
*
* Required. The name of the agent to update or create intents in.
* Format: `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
public Builder clearParent() {
parent_ = getDefaultInstance().getParent();
onChanged();
return this;
}
/**
*
*
*
* Required. The name of the agent to update or create intents in.
* Format: `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
public Builder setParentBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
parent_ = value;
onChanged();
return this;
}
/**
*
*
*
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
*
*
* string intent_batch_uri = 2;
*/
public java.lang.String getIntentBatchUri() {
java.lang.Object ref = "";
if (intentBatchCase_ == 2) {
ref = intentBatch_;
}
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (intentBatchCase_ == 2) {
intentBatch_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
*
*
* string intent_batch_uri = 2;
*/
public com.google.protobuf.ByteString getIntentBatchUriBytes() {
java.lang.Object ref = "";
if (intentBatchCase_ == 2) {
ref = intentBatch_;
}
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (intentBatchCase_ == 2) {
intentBatch_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
*
*
* string intent_batch_uri = 2;
*/
public Builder setIntentBatchUri(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
intentBatchCase_ = 2;
intentBatch_ = value;
onChanged();
return this;
}
/**
*
*
*
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
*
*
* string intent_batch_uri = 2;
*/
public Builder clearIntentBatchUri() {
if (intentBatchCase_ == 2) {
intentBatchCase_ = 0;
intentBatch_ = null;
onChanged();
}
return this;
}
/**
*
*
*
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
*
*
* string intent_batch_uri = 2;
*/
public Builder setIntentBatchUriBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
intentBatchCase_ = 2;
intentBatch_ = value;
onChanged();
return this;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.IntentBatch,
com.google.cloud.dialogflow.v2.IntentBatch.Builder,
com.google.cloud.dialogflow.v2.IntentBatchOrBuilder>
intentBatchInlineBuilder_;
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public boolean hasIntentBatchInline() {
return intentBatchCase_ == 3;
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public com.google.cloud.dialogflow.v2.IntentBatch getIntentBatchInline() {
if (intentBatchInlineBuilder_ == null) {
if (intentBatchCase_ == 3) {
return (com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_;
}
return com.google.cloud.dialogflow.v2.IntentBatch.getDefaultInstance();
} else {
if (intentBatchCase_ == 3) {
return intentBatchInlineBuilder_.getMessage();
}
return com.google.cloud.dialogflow.v2.IntentBatch.getDefaultInstance();
}
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public Builder setIntentBatchInline(com.google.cloud.dialogflow.v2.IntentBatch value) {
if (intentBatchInlineBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
intentBatch_ = value;
onChanged();
} else {
intentBatchInlineBuilder_.setMessage(value);
}
intentBatchCase_ = 3;
return this;
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public Builder setIntentBatchInline(
com.google.cloud.dialogflow.v2.IntentBatch.Builder builderForValue) {
if (intentBatchInlineBuilder_ == null) {
intentBatch_ = builderForValue.build();
onChanged();
} else {
intentBatchInlineBuilder_.setMessage(builderForValue.build());
}
intentBatchCase_ = 3;
return this;
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public Builder mergeIntentBatchInline(com.google.cloud.dialogflow.v2.IntentBatch value) {
if (intentBatchInlineBuilder_ == null) {
if (intentBatchCase_ == 3
&& intentBatch_ != com.google.cloud.dialogflow.v2.IntentBatch.getDefaultInstance()) {
intentBatch_ =
com.google.cloud.dialogflow.v2.IntentBatch.newBuilder(
(com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_)
.mergeFrom(value)
.buildPartial();
} else {
intentBatch_ = value;
}
onChanged();
} else {
if (intentBatchCase_ == 3) {
intentBatchInlineBuilder_.mergeFrom(value);
}
intentBatchInlineBuilder_.setMessage(value);
}
intentBatchCase_ = 3;
return this;
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public Builder clearIntentBatchInline() {
if (intentBatchInlineBuilder_ == null) {
if (intentBatchCase_ == 3) {
intentBatchCase_ = 0;
intentBatch_ = null;
onChanged();
}
} else {
if (intentBatchCase_ == 3) {
intentBatchCase_ = 0;
intentBatch_ = null;
}
intentBatchInlineBuilder_.clear();
}
return this;
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public com.google.cloud.dialogflow.v2.IntentBatch.Builder getIntentBatchInlineBuilder() {
return getIntentBatchInlineFieldBuilder().getBuilder();
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
public com.google.cloud.dialogflow.v2.IntentBatchOrBuilder getIntentBatchInlineOrBuilder() {
if ((intentBatchCase_ == 3) && (intentBatchInlineBuilder_ != null)) {
return intentBatchInlineBuilder_.getMessageOrBuilder();
} else {
if (intentBatchCase_ == 3) {
return (com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_;
}
return com.google.cloud.dialogflow.v2.IntentBatch.getDefaultInstance();
}
}
/**
*
*
*
* The collection of intents to update or create.
*
*
* .google.cloud.dialogflow.v2.IntentBatch intent_batch_inline = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.IntentBatch,
com.google.cloud.dialogflow.v2.IntentBatch.Builder,
com.google.cloud.dialogflow.v2.IntentBatchOrBuilder>
getIntentBatchInlineFieldBuilder() {
if (intentBatchInlineBuilder_ == null) {
if (!(intentBatchCase_ == 3)) {
intentBatch_ = com.google.cloud.dialogflow.v2.IntentBatch.getDefaultInstance();
}
intentBatchInlineBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.v2.IntentBatch,
com.google.cloud.dialogflow.v2.IntentBatch.Builder,
com.google.cloud.dialogflow.v2.IntentBatchOrBuilder>(
(com.google.cloud.dialogflow.v2.IntentBatch) intentBatch_,
getParentForChildren(),
isClean());
intentBatch_ = null;
}
intentBatchCase_ = 3;
onChanged();
;
return intentBatchInlineBuilder_;
}
private java.lang.Object languageCode_ = "";
/**
*
*
*
* Optional. The language of training phrases, parameters and rich messages
* defined in `intents`. If not specified, the agent's default language is
* used. [Many
* languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* are supported. Note: languages must be enabled in the agent before they can
* be used.
*
*
* string language_code = 4;
*/
public java.lang.String getLanguageCode() {
java.lang.Object ref = languageCode_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
languageCode_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Optional. The language of training phrases, parameters and rich messages
* defined in `intents`. If not specified, the agent's default language is
* used. [Many
* languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* are supported. Note: languages must be enabled in the agent before they can
* be used.
*
*
* string language_code = 4;
*/
public com.google.protobuf.ByteString getLanguageCodeBytes() {
java.lang.Object ref = languageCode_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
languageCode_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Optional. The language of training phrases, parameters and rich messages
* defined in `intents`. If not specified, the agent's default language is
* used. [Many
* languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* are supported. Note: languages must be enabled in the agent before they can
* be used.
*
*
* string language_code = 4;
*/
public Builder setLanguageCode(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
languageCode_ = value;
onChanged();
return this;
}
/**
*
*
*
* Optional. The language of training phrases, parameters and rich messages
* defined in `intents`. If not specified, the agent's default language is
* used. [Many
* languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* are supported. Note: languages must be enabled in the agent before they can
* be used.
*
*
* string language_code = 4;
*/
public Builder clearLanguageCode() {
languageCode_ = getDefaultInstance().getLanguageCode();
onChanged();
return this;
}
/**
*
*
*
* Optional. The language of training phrases, parameters and rich messages
* defined in `intents`. If not specified, the agent's default language is
* used. [Many
* languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* are supported. Note: languages must be enabled in the agent before they can
* be used.
*
*
* string language_code = 4;
*/
public Builder setLanguageCodeBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
languageCode_ = value;
onChanged();
return this;
}
private com.google.protobuf.FieldMask updateMask_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.FieldMask,
com.google.protobuf.FieldMask.Builder,
com.google.protobuf.FieldMaskOrBuilder>
updateMaskBuilder_;
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public boolean hasUpdateMask() {
return updateMaskBuilder_ != null || updateMask_ != null;
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public com.google.protobuf.FieldMask getUpdateMask() {
if (updateMaskBuilder_ == null) {
return updateMask_ == null
? com.google.protobuf.FieldMask.getDefaultInstance()
: updateMask_;
} else {
return updateMaskBuilder_.getMessage();
}
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public Builder setUpdateMask(com.google.protobuf.FieldMask value) {
if (updateMaskBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
updateMask_ = value;
onChanged();
} else {
updateMaskBuilder_.setMessage(value);
}
return this;
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForValue) {
if (updateMaskBuilder_ == null) {
updateMask_ = builderForValue.build();
onChanged();
} else {
updateMaskBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) {
if (updateMaskBuilder_ == null) {
if (updateMask_ != null) {
updateMask_ =
com.google.protobuf.FieldMask.newBuilder(updateMask_).mergeFrom(value).buildPartial();
} else {
updateMask_ = value;
}
onChanged();
} else {
updateMaskBuilder_.mergeFrom(value);
}
return this;
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public Builder clearUpdateMask() {
if (updateMaskBuilder_ == null) {
updateMask_ = null;
onChanged();
} else {
updateMask_ = null;
updateMaskBuilder_ = null;
}
return this;
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() {
onChanged();
return getUpdateMaskFieldBuilder().getBuilder();
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() {
if (updateMaskBuilder_ != null) {
return updateMaskBuilder_.getMessageOrBuilder();
} else {
return updateMask_ == null
? com.google.protobuf.FieldMask.getDefaultInstance()
: updateMask_;
}
}
/**
*
*
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 5;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.FieldMask,
com.google.protobuf.FieldMask.Builder,
com.google.protobuf.FieldMaskOrBuilder>
getUpdateMaskFieldBuilder() {
if (updateMaskBuilder_ == null) {
updateMaskBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.FieldMask,
com.google.protobuf.FieldMask.Builder,
com.google.protobuf.FieldMaskOrBuilder>(
getUpdateMask(), getParentForChildren(), isClean());
updateMask_ = null;
}
return updateMaskBuilder_;
}
private int intentView_ = 0;
/**
*
*
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 6;
*/
public int getIntentViewValue() {
return intentView_;
}
/**
*
*
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 6;
*/
public Builder setIntentViewValue(int value) {
intentView_ = value;
onChanged();
return this;
}
/**
*
*
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 6;
*/
public com.google.cloud.dialogflow.v2.IntentView getIntentView() {
@SuppressWarnings("deprecation")
com.google.cloud.dialogflow.v2.IntentView result =
com.google.cloud.dialogflow.v2.IntentView.valueOf(intentView_);
return result == null ? com.google.cloud.dialogflow.v2.IntentView.UNRECOGNIZED : result;
}
/**
*
*
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 6;
*/
public Builder setIntentView(com.google.cloud.dialogflow.v2.IntentView value) {
if (value == null) {
throw new NullPointerException();
}
intentView_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 6;
*/
public Builder clearIntentView() {
intentView_ = 0;
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.v2.BatchUpdateIntentsRequest)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2.BatchUpdateIntentsRequest)
private static final com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest();
}
public static com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public BatchUpdateIntentsRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new BatchUpdateIntentsRequest(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.BatchUpdateIntentsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}