Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantEvent

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantEvent

Returns a new instance of GoogleCloudDialogflowV2HumanAgentAssistantEvent.



11279
11280
11281
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11279

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

Instance Attribute Details

#conversationString

Corresponds to the JSON property conversation

Returns:

  • (String)


11267
11268
11269
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11267

def conversation
  @conversation
end

#participantString

Corresponds to the JSON property participant

Returns:

  • (String)


11272
11273
11274
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11272

def participant
  @participant
end

#suggestion_resultsArray<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestionResult>

Corresponds to the JSON property suggestionResults



11277
11278
11279
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11277

def suggestion_results
  @suggestion_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11284
11285
11286
11287
11288
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11284

def update!(**args)
  @conversation = args[:conversation] if args.key?(:conversation)
  @participant = args[:participant] if args.key?(:participant)
  @suggestion_results = args[:suggestion_results] if args.key?(:suggestion_results)
end