Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse

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

Overview

Represents a fulfillment response to the user.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse

Returns a new instance of GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse.



2454
2455
2456
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2454

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

Instance Attribute Details

#merge_behaviorString

Merge behavior for messages. Corresponds to the JSON property mergeBehavior

Returns:

  • (String)


2447
2448
2449
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2447

def merge_behavior
  @merge_behavior
end

#messagesArray<Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessage>

The list of rich message responses to present to the user. Corresponds to the JSON property messages



2452
2453
2454
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2452

def messages
  @messages
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2459
2460
2461
2462
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2459

def update!(**args)
  @merge_behavior = args[:merge_behavior] if args.key?(:merge_behavior)
  @messages = args[:messages] if args.key?(:messages)
end