Send feedback
Class WebhookRequest (4.60.0)
Stay organized with collections
Save and categorize content based on your preferences.
Version 4.60.0 keyboard_arrow_down
public final class WebhookRequest extends GeneratedMessageV3 implements WebhookRequestOrBuilder
The request message for a webhook call.
Protobuf type google.cloud.dialogflow.v2.WebhookRequest
Inherited Members
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
Static Fields
ORIGINAL_DETECT_INTENT_REQUEST_FIELD_NUMBER
public static final int ORIGINAL_DETECT_INTENT_REQUEST_FIELD_NUMBER
Field Value
Type
Description
int
QUERY_RESULT_FIELD_NUMBER
public static final int QUERY_RESULT_FIELD_NUMBER
Field Value
Type
Description
int
RESPONSE_ID_FIELD_NUMBER
public static final int RESPONSE_ID_FIELD_NUMBER
Field Value
Type
Description
int
SESSION_FIELD_NUMBER
public static final int SESSION_FIELD_NUMBER
Field Value
Type
Description
int
Static Methods
getDefaultInstance()
public static WebhookRequest getDefaultInstance ()
getDescriptor()
public static final Descriptors . Descriptor getDescriptor ()
newBuilder()
public static WebhookRequest . Builder newBuilder ()
newBuilder(WebhookRequest prototype)
public static WebhookRequest . Builder newBuilder ( WebhookRequest prototype )
public static WebhookRequest parseDelimitedFrom ( InputStream input )
public static WebhookRequest parseDelimitedFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(byte[] data)
public static WebhookRequest parseFrom ( byte [] data )
Parameter
Name
Description
data
byte []
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static WebhookRequest parseFrom ( byte [] data , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteString data)
public static WebhookRequest parseFrom ( ByteString data )
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static WebhookRequest parseFrom ( ByteString data , ExtensionRegistryLite extensionRegistry )
public static WebhookRequest parseFrom ( CodedInputStream input )
public static WebhookRequest parseFrom ( CodedInputStream input , ExtensionRegistryLite extensionRegistry )
public static WebhookRequest parseFrom ( InputStream input )
public static WebhookRequest parseFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteBuffer data)
public static WebhookRequest parseFrom ( ByteBuffer data )
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static WebhookRequest parseFrom ( ByteBuffer data , ExtensionRegistryLite extensionRegistry )
parser()
public static Parser<WebhookRequest> parser ()
Methods
equals(Object obj)
public boolean equals ( Object obj )
Parameter
Name
Description
obj
Object
Overrides
getDefaultInstanceForType()
public WebhookRequest getDefaultInstanceForType ()
getOriginalDetectIntentRequest()
public OriginalDetectIntentRequest getOriginalDetectIntentRequest ()
Optional. The contents of the original request that was passed to
[Streaming]DetectIntent
call.
.google.cloud.dialogflow.v2.OriginalDetectIntentRequest original_detect_intent_request = 3;
getOriginalDetectIntentRequestOrBuilder()
public OriginalDetectIntentRequestOrBuilder getOriginalDetectIntentRequestOrBuilder ()
Optional. The contents of the original request that was passed to
[Streaming]DetectIntent
call.
.google.cloud.dialogflow.v2.OriginalDetectIntentRequest original_detect_intent_request = 3;
getParserForType()
public Parser<WebhookRequest> getParserForType ()
Overrides
getQueryResult()
public QueryResult getQueryResult ()
The result of the conversational query or event processing. Contains the
same value as [Streaming]DetectIntentResponse.query_result
.
.google.cloud.dialogflow.v2.QueryResult query_result = 2;
getQueryResultOrBuilder()
public QueryResultOrBuilder getQueryResultOrBuilder ()
The result of the conversational query or event processing. Contains the
same value as [Streaming]DetectIntentResponse.query_result
.
.google.cloud.dialogflow.v2.QueryResult query_result = 2;
getResponseId()
public String getResponseId ()
The unique identifier of the response. Contains the same value as
[Streaming]DetectIntentResponse.response_id
.
string response_id = 1;
Returns
Type
Description
String
The responseId.
getResponseIdBytes()
public ByteString getResponseIdBytes ()
The unique identifier of the response. Contains the same value as
[Streaming]DetectIntentResponse.response_id
.
string response_id = 1;
Returns
Type
Description
ByteString
The bytes for responseId.
getSerializedSize()
public int getSerializedSize ()
Returns
Type
Description
int
Overrides
getSession()
public String getSession ()
The unique identifier of detectIntent request session.
Can be used to identify end-user inside webhook implementation.
Format: projects/<Project ID>/agent/sessions/<Session ID>
, or
projects/<Project ID>/agent/environments/<Environment ID>/users/<User
ID>/sessions/<Session ID>
.
string session = 4;
Returns
Type
Description
String
The session.
getSessionBytes()
public ByteString getSessionBytes ()
The unique identifier of detectIntent request session.
Can be used to identify end-user inside webhook implementation.
Format: projects/<Project ID>/agent/sessions/<Session ID>
, or
projects/<Project ID>/agent/environments/<Environment ID>/users/<User
ID>/sessions/<Session ID>
.
string session = 4;
Returns
Type
Description
ByteString
The bytes for session.
hasOriginalDetectIntentRequest()
public boolean hasOriginalDetectIntentRequest ()
Optional. The contents of the original request that was passed to
[Streaming]DetectIntent
call.
.google.cloud.dialogflow.v2.OriginalDetectIntentRequest original_detect_intent_request = 3;
Returns
Type
Description
boolean
Whether the originalDetectIntentRequest field is set.
hasQueryResult()
public boolean hasQueryResult ()
The result of the conversational query or event processing. Contains the
same value as [Streaming]DetectIntentResponse.query_result
.
.google.cloud.dialogflow.v2.QueryResult query_result = 2;
Returns
Type
Description
boolean
Whether the queryResult field is set.
hashCode()
Returns
Type
Description
int
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3 . FieldAccessorTable internalGetFieldAccessorTable ()
Overrides
isInitialized()
public final boolean isInitialized ()
Overrides
newBuilderForType()
public WebhookRequest . Builder newBuilderForType ()
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected WebhookRequest . Builder newBuilderForType ( GeneratedMessageV3 . BuilderParent parent )
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance ( GeneratedMessageV3 . UnusedPrivateParameter unused )
Returns
Type
Description
Object
Overrides
toBuilder()
public WebhookRequest . Builder toBuilder ()
writeTo(CodedOutputStream output)
public void writeTo ( CodedOutputStream output )
Overrides
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-28 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-01-28 UTC."],[],[]]