Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2WebhookRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2WebhookRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2/classes.rb,
 generated/google/apis/dialogflow_v2/representations.rb,
 generated/google/apis/dialogflow_v2/representations.rb
Overview
The request message for a webhook call.
Instance Attribute Summary collapse
- 
  
    
      #original_detect_intent_request  ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2OriginalDetectIntentRequest 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Represents the contents of the original request that was passed to the [Streaming]DetectIntentcall.
- 
  
    
      #query_result  ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryResult 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Represents the result of conversational query or event processing. 
- 
  
    
      #response_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique identifier of the response. 
- 
  
    
      #session  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique identifier of detectIntent request session. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDialogflowV2WebhookRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDialogflowV2WebhookRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2WebhookRequest
Returns a new instance of GoogleCloudDialogflowV2WebhookRequest
| 2289 2290 2291 | # File 'generated/google/apis/dialogflow_v2/classes.rb', line 2289 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#original_detect_intent_request ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2OriginalDetectIntentRequest
Represents the contents of the original request that was passed to
the [Streaming]DetectIntent call.
Corresponds to the JSON property originalDetectIntentRequest
| 2269 2270 2271 | # File 'generated/google/apis/dialogflow_v2/classes.rb', line 2269 def original_detect_intent_request @original_detect_intent_request end | 
#query_result ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryResult
Represents the result of conversational query or event processing.
Corresponds to the JSON property queryResult
| 2274 2275 2276 | # File 'generated/google/apis/dialogflow_v2/classes.rb', line 2274 def query_result @query_result end | 
#response_id ⇒ String
The unique identifier of the response. Contains the same value as
[Streaming]DetectIntentResponse.response_id.
Corresponds to the JSON property responseId
| 2280 2281 2282 | # File 'generated/google/apis/dialogflow_v2/classes.rb', line 2280 def response_id @response_id end | 
#session ⇒ String
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>.
Corresponds to the JSON property session
| 2287 2288 2289 | # File 'generated/google/apis/dialogflow_v2/classes.rb', line 2287 def session @session end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2294 2295 2296 2297 2298 2299 | # File 'generated/google/apis/dialogflow_v2/classes.rb', line 2294 def update!(**args) @original_detect_intent_request = args[:original_detect_intent_request] if args.key?(:original_detect_intent_request) @query_result = args[:query_result] if args.key?(:query_result) @response_id = args[:response_id] if args.key?(:response_id) @session = args[:session] if args.key?(:session) end |