Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb

Overview

The request message for a webhook call.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1WebhookRequest

Returns a new instance of GoogleCloudDialogflowCxV3beta1WebhookRequest.



4473
4474
4475
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4473

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#detect_intent_response_idString

Always present. The unique identifier of the DetectIntentResponse that will be returned to the API caller. Corresponds to the JSON property detectIntentResponseId

Returns:

  • (String)


4440
4441
4442
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4440

def detect_intent_response_id
  @detect_intent_response_id
end

#fulfillment_infoGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo

Represents fulfillment information communicated to the webhook. Corresponds to the JSON property fulfillmentInfo



4445
4446
4447
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4445

def fulfillment_info
  @fulfillment_info
end

#intent_infoGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo

Represents intent information communicated to the webhook. Corresponds to the JSON property intentInfo



4450
4451
4452
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4450

def intent_info
  @intent_info
end

#messagesArray<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessage>

The list of rich message responses to present to the user. Webhook can choose to append or replace this list in WebhookResponse.fulfillment_response; Corresponds to the JSON property messages



4456
4457
4458
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4456

def messages
  @messages
end

#page_infoGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1PageInfo

Represents page information communicated to and from the webhook. Corresponds to the JSON property pageInfo



4461
4462
4463
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4461

def page_info
  @page_info
end

#payloadHash<String,Object>

Custom data set in QueryParameters.payload. Corresponds to the JSON property payload

Returns:

  • (Hash<String,Object>)


4466
4467
4468
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4466

def payload
  @payload
end

#session_infoGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1SessionInfo

Represents session information communicated to and from the webhook. Corresponds to the JSON property sessionInfo



4471
4472
4473
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4471

def session_info
  @session_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4478
4479
4480
4481
4482
4483
4484
4485
4486
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 4478

def update!(**args)
  @detect_intent_response_id = args[:detect_intent_response_id] if args.key?(:detect_intent_response_id)
  @fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
  @intent_info = args[:intent_info] if args.key?(:intent_info)
  @messages = args[:messages] if args.key?(:messages)
  @page_info = args[:page_info] if args.key?(:page_info)
  @payload = args[:payload] if args.key?(:payload)
  @session_info = args[:session_info] if args.key?(:session_info)
end