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

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

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

// Protobuf Java Version: 3.25.4
package com.google.cloud.dialogflow.v2;

/**
 *
 *
 * 
 * Represents the contents of the original request that was passed to
 * the `[Streaming]DetectIntent` call.
 * 
* * Protobuf type {@code google.cloud.dialogflow.v2.OriginalDetectIntentRequest} */ public final class OriginalDetectIntentRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2.OriginalDetectIntentRequest) OriginalDetectIntentRequestOrBuilder { private static final long serialVersionUID = 0L; // Use OriginalDetectIntentRequest.newBuilder() to construct. private OriginalDetectIntentRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private OriginalDetectIntentRequest() { source_ = ""; version_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new OriginalDetectIntentRequest(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.v2.WebhookProto .internal_static_google_cloud_dialogflow_v2_OriginalDetectIntentRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.v2.WebhookProto .internal_static_google_cloud_dialogflow_v2_OriginalDetectIntentRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest.class, com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest.Builder.class); } private int bitField0_; public static final int SOURCE_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object source_ = ""; /** * * *
   * The source of this request, e.g., `google`, `facebook`, `slack`. It is set
   * by Dialogflow-owned servers.
   * 
* * string source = 1; * * @return The source. */ @java.lang.Override public java.lang.String getSource() { java.lang.Object ref = source_; 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(); source_ = s; return s; } } /** * * *
   * The source of this request, e.g., `google`, `facebook`, `slack`. It is set
   * by Dialogflow-owned servers.
   * 
* * string source = 1; * * @return The bytes for source. */ @java.lang.Override public com.google.protobuf.ByteString getSourceBytes() { java.lang.Object ref = source_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); source_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int VERSION_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object version_ = ""; /** * * *
   * Optional. The version of the protocol used for this request.
   * This field is AoG-specific.
   * 
* * string version = 2; * * @return The version. */ @java.lang.Override public java.lang.String getVersion() { java.lang.Object ref = version_; 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(); version_ = s; return s; } } /** * * *
   * Optional. The version of the protocol used for this request.
   * This field is AoG-specific.
   * 
* * string version = 2; * * @return The bytes for version. */ @java.lang.Override public com.google.protobuf.ByteString getVersionBytes() { java.lang.Object ref = version_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); version_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int PAYLOAD_FIELD_NUMBER = 3; private com.google.protobuf.Struct payload_; /** * * *
   * Optional. This field is set to the value of the `QueryParameters.payload`
   * field passed in the request. Some integrations that query a Dialogflow
   * agent may provide additional information in the payload.
   *
   * In particular, for the Dialogflow Phone Gateway integration, this field has
   * the form:
   * <pre>{
   *  "telephony": {
   *    "caller_id": "+18558363987"
   *  }
   * }</pre>
   * Note: The caller ID field (`caller_id`) will be redacted for Trial
   * Edition agents and populated with the caller ID in [E.164
   * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
   * 
* * .google.protobuf.Struct payload = 3; * * @return Whether the payload field is set. */ @java.lang.Override public boolean hasPayload() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * Optional. This field is set to the value of the `QueryParameters.payload`
   * field passed in the request. Some integrations that query a Dialogflow
   * agent may provide additional information in the payload.
   *
   * In particular, for the Dialogflow Phone Gateway integration, this field has
   * the form:
   * <pre>{
   *  "telephony": {
   *    "caller_id": "+18558363987"
   *  }
   * }</pre>
   * Note: The caller ID field (`caller_id`) will be redacted for Trial
   * Edition agents and populated with the caller ID in [E.164
   * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
   * 
* * .google.protobuf.Struct payload = 3; * * @return The payload. */ @java.lang.Override public com.google.protobuf.Struct getPayload() { return payload_ == null ? com.google.protobuf.Struct.getDefaultInstance() : payload_; } /** * * *
   * Optional. This field is set to the value of the `QueryParameters.payload`
   * field passed in the request. Some integrations that query a Dialogflow
   * agent may provide additional information in the payload.
   *
   * In particular, for the Dialogflow Phone Gateway integration, this field has
   * the form:
   * <pre>{
   *  "telephony": {
   *    "caller_id": "+18558363987"
   *  }
   * }</pre>
   * Note: The caller ID field (`caller_id`) will be redacted for Trial
   * Edition agents and populated with the caller ID in [E.164
   * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
   * 
* * .google.protobuf.Struct payload = 3; */ @java.lang.Override public com.google.protobuf.StructOrBuilder getPayloadOrBuilder() { return payload_ == null ? com.google.protobuf.Struct.getDefaultInstance() : payload_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(source_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, source_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(version_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, version_); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(3, getPayload()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(source_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, source_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(version_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, version_); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getPayload()); } 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.v2.OriginalDetectIntentRequest)) { return super.equals(obj); } com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest other = (com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest) obj; if (!getSource().equals(other.getSource())) return false; if (!getVersion().equals(other.getVersion())) return false; if (hasPayload() != other.hasPayload()) return false; if (hasPayload()) { if (!getPayload().equals(other.getPayload())) 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) + SOURCE_FIELD_NUMBER; hash = (53 * hash) + getSource().hashCode(); hash = (37 * hash) + VERSION_FIELD_NUMBER; hash = (53 * hash) + getVersion().hashCode(); if (hasPayload()) { hash = (37 * hash) + PAYLOAD_FIELD_NUMBER; hash = (53 * hash) + getPayload().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest 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.OriginalDetectIntentRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest 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.OriginalDetectIntentRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest 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.OriginalDetectIntentRequest parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest 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.OriginalDetectIntentRequest parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest 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.OriginalDetectIntentRequest 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.OriginalDetectIntentRequest 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.OriginalDetectIntentRequest 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; } /** * * *
   * Represents the contents of the original request that was passed to
   * the `[Streaming]DetectIntent` call.
   * 
* * Protobuf type {@code google.cloud.dialogflow.v2.OriginalDetectIntentRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2.OriginalDetectIntentRequest) com.google.cloud.dialogflow.v2.OriginalDetectIntentRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.v2.WebhookProto .internal_static_google_cloud_dialogflow_v2_OriginalDetectIntentRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.v2.WebhookProto .internal_static_google_cloud_dialogflow_v2_OriginalDetectIntentRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest.class, com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest.Builder.class); } // Construct using com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getPayloadFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; source_ = ""; version_ = ""; payload_ = null; if (payloadBuilder_ != null) { payloadBuilder_.dispose(); payloadBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.dialogflow.v2.WebhookProto .internal_static_google_cloud_dialogflow_v2_OriginalDetectIntentRequest_descriptor; } @java.lang.Override public com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest getDefaultInstanceForType() { return com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest.getDefaultInstance(); } @java.lang.Override public com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest build() { com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest buildPartial() { com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest result = new com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.source_ = source_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.version_ = version_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000004) != 0)) { result.payload_ = payloadBuilder_ == null ? payload_ : payloadBuilder_.build(); to_bitField0_ |= 0x00000001; } 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.v2.OriginalDetectIntentRequest) { return mergeFrom((com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest other) { if (other == com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest.getDefaultInstance()) return this; if (!other.getSource().isEmpty()) { source_ = other.source_; bitField0_ |= 0x00000001; onChanged(); } if (!other.getVersion().isEmpty()) { version_ = other.version_; bitField0_ |= 0x00000002; onChanged(); } if (other.hasPayload()) { mergePayload(other.getPayload()); } 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: { source_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { version_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { input.readMessage(getPayloadFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000004; break; } // case 26 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 source_ = ""; /** * * *
     * The source of this request, e.g., `google`, `facebook`, `slack`. It is set
     * by Dialogflow-owned servers.
     * 
* * string source = 1; * * @return The source. */ public java.lang.String getSource() { java.lang.Object ref = source_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); source_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * The source of this request, e.g., `google`, `facebook`, `slack`. It is set
     * by Dialogflow-owned servers.
     * 
* * string source = 1; * * @return The bytes for source. */ public com.google.protobuf.ByteString getSourceBytes() { java.lang.Object ref = source_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); source_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * The source of this request, e.g., `google`, `facebook`, `slack`. It is set
     * by Dialogflow-owned servers.
     * 
* * string source = 1; * * @param value The source to set. * @return This builder for chaining. */ public Builder setSource(java.lang.String value) { if (value == null) { throw new NullPointerException(); } source_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * The source of this request, e.g., `google`, `facebook`, `slack`. It is set
     * by Dialogflow-owned servers.
     * 
* * string source = 1; * * @return This builder for chaining. */ public Builder clearSource() { source_ = getDefaultInstance().getSource(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * The source of this request, e.g., `google`, `facebook`, `slack`. It is set
     * by Dialogflow-owned servers.
     * 
* * string source = 1; * * @param value The bytes for source to set. * @return This builder for chaining. */ public Builder setSourceBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); source_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private java.lang.Object version_ = ""; /** * * *
     * Optional. The version of the protocol used for this request.
     * This field is AoG-specific.
     * 
* * string version = 2; * * @return The version. */ public java.lang.String getVersion() { java.lang.Object ref = version_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); version_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Optional. The version of the protocol used for this request.
     * This field is AoG-specific.
     * 
* * string version = 2; * * @return The bytes for version. */ public com.google.protobuf.ByteString getVersionBytes() { java.lang.Object ref = version_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); version_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Optional. The version of the protocol used for this request.
     * This field is AoG-specific.
     * 
* * string version = 2; * * @param value The version to set. * @return This builder for chaining. */ public Builder setVersion(java.lang.String value) { if (value == null) { throw new NullPointerException(); } version_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * Optional. The version of the protocol used for this request.
     * This field is AoG-specific.
     * 
* * string version = 2; * * @return This builder for chaining. */ public Builder clearVersion() { version_ = getDefaultInstance().getVersion(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** * * *
     * Optional. The version of the protocol used for this request.
     * This field is AoG-specific.
     * 
* * string version = 2; * * @param value The bytes for version to set. * @return This builder for chaining. */ public Builder setVersionBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); version_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private com.google.protobuf.Struct payload_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> payloadBuilder_; /** * * *
     * Optional. This field is set to the value of the `QueryParameters.payload`
     * field passed in the request. Some integrations that query a Dialogflow
     * agent may provide additional information in the payload.
     *
     * In particular, for the Dialogflow Phone Gateway integration, this field has
     * the form:
     * <pre>{
     *  "telephony": {
     *    "caller_id": "+18558363987"
     *  }
     * }</pre>
     * Note: The caller ID field (`caller_id`) will be redacted for Trial
     * Edition agents and populated with the caller ID in [E.164
     * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
     * 
* * .google.protobuf.Struct payload = 3; * * @return Whether the payload field is set. */ public boolean hasPayload() { return ((bitField0_ & 0x00000004) != 0); } /** * * *
     * Optional. This field is set to the value of the `QueryParameters.payload`
     * field passed in the request. Some integrations that query a Dialogflow
     * agent may provide additional information in the payload.
     *
     * In particular, for the Dialogflow Phone Gateway integration, this field has
     * the form:
     * <pre>{
     *  "telephony": {
     *    "caller_id": "+18558363987"
     *  }
     * }</pre>
     * Note: The caller ID field (`caller_id`) will be redacted for Trial
     * Edition agents and populated with the caller ID in [E.164
     * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
     * 
* * .google.protobuf.Struct payload = 3; * * @return The payload. */ public com.google.protobuf.Struct getPayload() { if (payloadBuilder_ == null) { return payload_ == null ? com.google.protobuf.Struct.getDefaultInstance() : payload_; } else { return payloadBuilder_.getMessage(); } } /** * * *
     * Optional. This field is set to the value of the `QueryParameters.payload`
     * field passed in the request. Some integrations that query a Dialogflow
     * agent may provide additional information in the payload.
     *
     * In particular, for the Dialogflow Phone Gateway integration, this field has
     * the form:
     * <pre>{
     *  "telephony": {
     *    "caller_id": "+18558363987"
     *  }
     * }</pre>
     * Note: The caller ID field (`caller_id`) will be redacted for Trial
     * Edition agents and populated with the caller ID in [E.164
     * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
     * 
* * .google.protobuf.Struct payload = 3; */ public Builder setPayload(com.google.protobuf.Struct value) { if (payloadBuilder_ == null) { if (value == null) { throw new NullPointerException(); } payload_ = value; } else { payloadBuilder_.setMessage(value); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Optional. This field is set to the value of the `QueryParameters.payload`
     * field passed in the request. Some integrations that query a Dialogflow
     * agent may provide additional information in the payload.
     *
     * In particular, for the Dialogflow Phone Gateway integration, this field has
     * the form:
     * <pre>{
     *  "telephony": {
     *    "caller_id": "+18558363987"
     *  }
     * }</pre>
     * Note: The caller ID field (`caller_id`) will be redacted for Trial
     * Edition agents and populated with the caller ID in [E.164
     * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
     * 
* * .google.protobuf.Struct payload = 3; */ public Builder setPayload(com.google.protobuf.Struct.Builder builderForValue) { if (payloadBuilder_ == null) { payload_ = builderForValue.build(); } else { payloadBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Optional. This field is set to the value of the `QueryParameters.payload`
     * field passed in the request. Some integrations that query a Dialogflow
     * agent may provide additional information in the payload.
     *
     * In particular, for the Dialogflow Phone Gateway integration, this field has
     * the form:
     * <pre>{
     *  "telephony": {
     *    "caller_id": "+18558363987"
     *  }
     * }</pre>
     * Note: The caller ID field (`caller_id`) will be redacted for Trial
     * Edition agents and populated with the caller ID in [E.164
     * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
     * 
* * .google.protobuf.Struct payload = 3; */ public Builder mergePayload(com.google.protobuf.Struct value) { if (payloadBuilder_ == null) { if (((bitField0_ & 0x00000004) != 0) && payload_ != null && payload_ != com.google.protobuf.Struct.getDefaultInstance()) { getPayloadBuilder().mergeFrom(value); } else { payload_ = value; } } else { payloadBuilder_.mergeFrom(value); } if (payload_ != null) { bitField0_ |= 0x00000004; onChanged(); } return this; } /** * * *
     * Optional. This field is set to the value of the `QueryParameters.payload`
     * field passed in the request. Some integrations that query a Dialogflow
     * agent may provide additional information in the payload.
     *
     * In particular, for the Dialogflow Phone Gateway integration, this field has
     * the form:
     * <pre>{
     *  "telephony": {
     *    "caller_id": "+18558363987"
     *  }
     * }</pre>
     * Note: The caller ID field (`caller_id`) will be redacted for Trial
     * Edition agents and populated with the caller ID in [E.164
     * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
     * 
* * .google.protobuf.Struct payload = 3; */ public Builder clearPayload() { bitField0_ = (bitField0_ & ~0x00000004); payload_ = null; if (payloadBuilder_ != null) { payloadBuilder_.dispose(); payloadBuilder_ = null; } onChanged(); return this; } /** * * *
     * Optional. This field is set to the value of the `QueryParameters.payload`
     * field passed in the request. Some integrations that query a Dialogflow
     * agent may provide additional information in the payload.
     *
     * In particular, for the Dialogflow Phone Gateway integration, this field has
     * the form:
     * <pre>{
     *  "telephony": {
     *    "caller_id": "+18558363987"
     *  }
     * }</pre>
     * Note: The caller ID field (`caller_id`) will be redacted for Trial
     * Edition agents and populated with the caller ID in [E.164
     * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
     * 
* * .google.protobuf.Struct payload = 3; */ public com.google.protobuf.Struct.Builder getPayloadBuilder() { bitField0_ |= 0x00000004; onChanged(); return getPayloadFieldBuilder().getBuilder(); } /** * * *
     * Optional. This field is set to the value of the `QueryParameters.payload`
     * field passed in the request. Some integrations that query a Dialogflow
     * agent may provide additional information in the payload.
     *
     * In particular, for the Dialogflow Phone Gateway integration, this field has
     * the form:
     * <pre>{
     *  "telephony": {
     *    "caller_id": "+18558363987"
     *  }
     * }</pre>
     * Note: The caller ID field (`caller_id`) will be redacted for Trial
     * Edition agents and populated with the caller ID in [E.164
     * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
     * 
* * .google.protobuf.Struct payload = 3; */ public com.google.protobuf.StructOrBuilder getPayloadOrBuilder() { if (payloadBuilder_ != null) { return payloadBuilder_.getMessageOrBuilder(); } else { return payload_ == null ? com.google.protobuf.Struct.getDefaultInstance() : payload_; } } /** * * *
     * Optional. This field is set to the value of the `QueryParameters.payload`
     * field passed in the request. Some integrations that query a Dialogflow
     * agent may provide additional information in the payload.
     *
     * In particular, for the Dialogflow Phone Gateway integration, this field has
     * the form:
     * <pre>{
     *  "telephony": {
     *    "caller_id": "+18558363987"
     *  }
     * }</pre>
     * Note: The caller ID field (`caller_id`) will be redacted for Trial
     * Edition agents and populated with the caller ID in [E.164
     * format](https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.
     * 
* * .google.protobuf.Struct payload = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> getPayloadFieldBuilder() { if (payloadBuilder_ == null) { payloadBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder>( getPayload(), getParentForChildren(), isClean()); payload_ = null; } return payloadBuilder_; } @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.OriginalDetectIntentRequest) } // @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2.OriginalDetectIntentRequest) private static final com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest(); } public static com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public OriginalDetectIntentRequest 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.v2.OriginalDetectIntentRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy