Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessage

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

Corresponds to the Response field in the Dialogflow console.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessage

Returns a new instance of GoogleCloudDialogflowV2IntentMessage



504
505
506
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 504

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

Instance Attribute Details

#basic_cardGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessageBasicCard

The basic card message. Useful for displaying information. Corresponds to the JSON property basicCard



441
442
443
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 441

def basic_card
  @basic_card
end

#cardGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessageCard

The card response message. Corresponds to the JSON property card



446
447
448
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 446

def card
  @card
end

The card for presenting a carousel of options to select from. Corresponds to the JSON property carouselSelect



451
452
453
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 451

def carousel_select
  @carousel_select
end

#imageGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessageImage

The image response message. Corresponds to the JSON property image



456
457
458
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 456

def image
  @image
end

The suggestion chip message that allows the user to jump out to the app or website associated with this agent. Corresponds to the JSON property linkOutSuggestion



462
463
464
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 462

def link_out_suggestion
  @link_out_suggestion
end

#list_selectGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessageListSelect

The card for presenting a list of options to select from. Corresponds to the JSON property listSelect



467
468
469
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 467

def list_select
  @list_select
end

#payloadHash<String,Object>

Returns a response containing a custom, platform-specific payload. See the Intent.Message.Platform type for a description of the structure that may be required for your platform. Corresponds to the JSON property payload

Returns:

  • (Hash<String,Object>)


474
475
476
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 474

def payload
  @payload
end

#platformString

Optional. The platform that this message is intended for. Corresponds to the JSON property platform

Returns:

  • (String)


479
480
481
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 479

def platform
  @platform
end

#quick_repliesGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessageQuickReplies

The quick replies response message. Corresponds to the JSON property quickReplies



484
485
486
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 484

def quick_replies
  @quick_replies
end

#simple_responsesGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessageSimpleResponses

The collection of simple response candidates. This message in QueryResult.fulfillment_messages and WebhookResponse.fulfillment_messages should contain only one SimpleResponse. Corresponds to the JSON property simpleResponses



492
493
494
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 492

def simple_responses
  @simple_responses
end

#suggestionsGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessageSuggestions

The collection of suggestions. Corresponds to the JSON property suggestions



497
498
499
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 497

def suggestions
  @suggestions
end

#textGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessageText

The text response message. Corresponds to the JSON property text



502
503
504
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 502

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



509
510
511
512
513
514
515
516
517
518
519
520
521
522
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 509

def update!(**args)
  @basic_card = args[:basic_card] if args.key?(:basic_card)
  @card = args[:card] if args.key?(:card)
  @carousel_select = args[:carousel_select] if args.key?(:carousel_select)
  @image = args[:image] if args.key?(:image)
  @link_out_suggestion = args[:link_out_suggestion] if args.key?(:link_out_suggestion)
  @list_select = args[:list_select] if args.key?(:list_select)
  @payload = args[:payload] if args.key?(:payload)
  @platform = args[:platform] if args.key?(:platform)
  @quick_replies = args[:quick_replies] if args.key?(:quick_replies)
  @simple_responses = args[:simple_responses] if args.key?(:simple_responses)
  @suggestions = args[:suggestions] if args.key?(:suggestions)
  @text = args[:text] if args.key?(:text)
end