class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse

Represents a fulfillment response to the user.

Attributes

merge_behavior[RW]

Merge behavior for `messages`. Corresponds to the JSON property `mergeBehavior` @return [String]

messages[RW]

The list of rich message responses to present to the user. Corresponds to the JSON property `messages` @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessage>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 6287
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3/classes.rb, line 6292
def update!(**args)
  @merge_behavior = args[:merge_behavior] if args.key?(:merge_behavior)
  @messages = args[:messages] if args.key?(:messages)
end