com.google.cloud.dialogflow.v2.OriginalDetectIntentRequestOrBuilder 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;
public interface OriginalDetectIntentRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.OriginalDetectIntentRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The source of this request, e.g., `google`, `facebook`, `slack`. It is set
* by Dialogflow-owned servers.
*
*
* string source = 1;
*/
java.lang.String getSource();
/**
*
*
*
* The source of this request, e.g., `google`, `facebook`, `slack`. It is set
* by Dialogflow-owned servers.
*
*
* string source = 1;
*/
com.google.protobuf.ByteString getSourceBytes();
/**
*
*
*
* Optional. The version of the protocol used for this request.
* This field is AoG-specific.
*
*
* string version = 2;
*/
java.lang.String getVersion();
/**
*
*
*
* Optional. The version of the protocol used for this request.
* This field is AoG-specific.
*
*
* string version = 2;
*/
com.google.protobuf.ByteString getVersionBytes();
/**
*
*
*
* 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;
*/
boolean hasPayload();
/**
*
*
*
* 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;
*/
com.google.protobuf.Struct getPayload();
/**
*
*
*
* 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;
*/
com.google.protobuf.StructOrBuilder getPayloadOrBuilder();
}