Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GenerateStatelessSuggestionRequest

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

The request message for Conversations.GenerateStatelessSuggestion.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2GenerateStatelessSuggestionRequest

Returns a new instance of GoogleCloudDialogflowV2GenerateStatelessSuggestionRequest.



10561
10562
10563
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10561

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

Instance Attribute Details

#conversation_contextGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationContext

Context of the conversation, including transcripts. Corresponds to the JSON property conversationContext



10542
10543
10544
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10542

def conversation_context
  @conversation_context
end

#generatorGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2Generator

LLM generator. Corresponds to the JSON property generator



10547
10548
10549
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10547

def generator
  @generator
end

#generator_nameString

The resource name of the existing created generator. Format: projects// locations//generators/ Corresponds to the JSON property generatorName

Returns:

  • (String)


10553
10554
10555
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10553

def generator_name
  @generator_name
end

#trigger_eventsArray<String>

Optional. A list of trigger events. Generator will be triggered only if it's trigger event is included here. Corresponds to the JSON property triggerEvents

Returns:

  • (Array<String>)


10559
10560
10561
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10559

def trigger_events
  @trigger_events
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10566
10567
10568
10569
10570
10571
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10566

def update!(**args)
  @conversation_context = args[:conversation_context] if args.key?(:conversation_context)
  @generator = args[:generator] if args.key?(:generator)
  @generator_name = args[:generator_name] if args.key?(:generator_name)
  @trigger_events = args[:trigger_events] if args.key?(:trigger_events)
end