Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ConversationSignals

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

Overview

This message is used to hold all the Conversation Signals data, which will be converted to JSON and exported to BigQuery.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ConversationSignals

Returns a new instance of GoogleCloudDialogflowCxV3ConversationSignals.



925
926
927
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 925

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

Instance Attribute Details

#turn_signalsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TurnSignals

Collection of all signals that were extracted for a single turn of the conversation. Corresponds to the JSON property turnSignals



923
924
925
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 923

def turn_signals
  @turn_signals
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



930
931
932
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 930

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