com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest 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/webhook.proto
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
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private OriginalDetectIntentRequest(
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();
source_ = s;
break;
}
case 18:
{
java.lang.String s = input.readStringRequireUtf8();
version_ = s;
break;
}
case 26:
{
com.google.protobuf.Struct.Builder subBuilder = null;
if (payload_ != null) {
subBuilder = payload_.toBuilder();
}
payload_ = input.readMessage(com.google.protobuf.Struct.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(payload_);
payload_ = subBuilder.buildPartial();
}
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.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);
}
public static final int SOURCE_FIELD_NUMBER = 1;
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;
*/
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;
*/
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;
private volatile java.lang.Object version_;
/**
*
*
*
* Optional. The version of the protocol used for this request.
* This field is AoG-specific.
*
*
* string version = 2;
*/
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;
*/
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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise Edition agents.
*
*
* .google.protobuf.Struct payload = 3;
*/
public boolean hasPayload() {
return payload_ != null;
}
/**
*
*
*
* 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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise Edition agents.
*
*
* .google.protobuf.Struct payload = 3;
*/
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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise Edition agents.
*
*
* .google.protobuf.Struct payload = 3;
*/
public com.google.protobuf.StructOrBuilder getPayloadOrBuilder() {
return getPayload();
}
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 (!getSourceBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, source_);
}
if (!getVersionBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, version_);
}
if (payload_ != null) {
output.writeMessage(3, getPayload());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getSourceBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, source_);
}
if (!getVersionBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, version_);
}
if (payload_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getPayload());
}
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.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 (!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) + 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) + unknownFields.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) {}
}
@java.lang.Override
public Builder clear() {
super.clear();
source_ = "";
version_ = "";
if (payloadBuilder_ == null) {
payload_ = null;
} else {
payload_ = null;
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);
result.source_ = source_;
result.version_ = version_;
if (payloadBuilder_ == null) {
result.payload_ = payload_;
} else {
result.payload_ = payloadBuilder_.build();
}
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.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_;
onChanged();
}
if (!other.getVersion().isEmpty()) {
version_ = other.version_;
onChanged();
}
if (other.hasPayload()) {
mergePayload(other.getPayload());
}
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.OriginalDetectIntentRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage =
(com.google.cloud.dialogflow.v2.OriginalDetectIntentRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
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;
*/
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;
*/
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;
*/
public Builder setSource(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
source_ = value;
onChanged();
return this;
}
/**
*
*
*
* The source of this request, e.g., `google`, `facebook`, `slack`. It is set
* by Dialogflow-owned servers.
*
*
* string source = 1;
*/
public Builder clearSource() {
source_ = getDefaultInstance().getSource();
onChanged();
return this;
}
/**
*
*
*
* The source of this request, e.g., `google`, `facebook`, `slack`. It is set
* by Dialogflow-owned servers.
*
*
* string source = 1;
*/
public Builder setSourceBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
source_ = value;
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;
*/
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;
*/
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;
*/
public Builder setVersion(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
version_ = value;
onChanged();
return this;
}
/**
*
*
*
* Optional. The version of the protocol used for this request.
* This field is AoG-specific.
*
*
* string version = 2;
*/
public Builder clearVersion() {
version_ = getDefaultInstance().getVersion();
onChanged();
return this;
}
/**
*
*
*
* Optional. The version of the protocol used for this request.
* This field is AoG-specific.
*
*
* string version = 2;
*/
public Builder setVersionBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
version_ = value;
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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise Edition agents.
*
*
* .google.protobuf.Struct payload = 3;
*/
public boolean hasPayload() {
return payloadBuilder_ != null || payload_ != null;
}
/**
*
*
*
* 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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise Edition agents.
*
*
* .google.protobuf.Struct payload = 3;
*/
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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise 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;
onChanged();
} else {
payloadBuilder_.setMessage(value);
}
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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise Edition agents.
*
*
* .google.protobuf.Struct payload = 3;
*/
public Builder setPayload(com.google.protobuf.Struct.Builder builderForValue) {
if (payloadBuilder_ == null) {
payload_ = builderForValue.build();
onChanged();
} else {
payloadBuilder_.setMessage(builderForValue.build());
}
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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise Edition agents.
*
*
* .google.protobuf.Struct payload = 3;
*/
public Builder mergePayload(com.google.protobuf.Struct value) {
if (payloadBuilder_ == null) {
if (payload_ != null) {
payload_ =
com.google.protobuf.Struct.newBuilder(payload_).mergeFrom(value).buildPartial();
} else {
payload_ = value;
}
onChanged();
} else {
payloadBuilder_.mergeFrom(value);
}
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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise Edition agents.
*
*
* .google.protobuf.Struct payload = 3;
*/
public Builder clearPayload() {
if (payloadBuilder_ == null) {
payload_ = null;
onChanged();
} else {
payload_ = null;
payloadBuilder_ = null;
}
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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise Edition agents.
*
*
* .google.protobuf.Struct payload = 3;
*/
public com.google.protobuf.Struct.Builder getPayloadBuilder() {
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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise 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 Telephony Gateway this field has the form:
* <pre>{
* "telephony": {
* "caller_id": "+18558363987"
* }
* }</pre>
* Note: The caller ID field (`caller_id`) will be redacted for Standard
* Edition agents and populated with the caller ID in [E.164
* format](https://en.wikipedia.org/wiki/E.164) for Enterprise 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 {
return new OriginalDetectIntentRequest(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.OriginalDetectIntentRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}