Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3TurnSignals
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3TurnSignals
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
Collection of all signals that were extracted for a single turn of the conversation.
Instance Attribute Summary collapse
-
#agent_escalated ⇒ Boolean
(also: #agent_escalated?)
Whether agent responded with LiveAgentHandoff fulfillment.
-
#dtmf_used ⇒ Boolean
(also: #dtmf_used?)
Whether user was using DTMF input.
-
#failure_reasons ⇒ Array<String>
Failure reasons of the turn.
-
#no_match ⇒ Boolean
(also: #no_match?)
Whether NLU predicted NO_MATCH.
-
#no_user_input ⇒ Boolean
(also: #no_user_input?)
Whether user provided no input.
-
#reached_end_page ⇒ Boolean
(also: #reached_end_page?)
Whether turn resulted in End Session page.
-
#sentiment_magnitude ⇒ Float
Sentiment magnitude of the user utterance if sentiment was enabled.
-
#sentiment_score ⇒ Float
Sentiment score of the user utterance if sentiment was enabled.
-
#user_escalated ⇒ Boolean
(also: #user_escalated?)
Whether user was specifically asking for a live agent.
-
#webhook_statuses ⇒ Array<String>
Human-readable statuses of the webhooks triggered during this turn.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TurnSignals
constructor
A new instance of GoogleCloudDialogflowCxV3TurnSignals.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TurnSignals
Returns a new instance of GoogleCloudDialogflowCxV3TurnSignals.
3297 3298 3299 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3297 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_escalated ⇒ Boolean Also known as: agent_escalated?
Whether agent responded with LiveAgentHandoff fulfillment.
Corresponds to the JSON property agentEscalated
3242 3243 3244 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3242 def agent_escalated @agent_escalated end |
#dtmf_used ⇒ Boolean Also known as: dtmf_used?
Whether user was using DTMF input.
Corresponds to the JSON property dtmfUsed
3248 3249 3250 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3248 def dtmf_used @dtmf_used end |
#failure_reasons ⇒ Array<String>
Failure reasons of the turn.
Corresponds to the JSON property failureReasons
3254 3255 3256 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3254 def failure_reasons @failure_reasons end |
#no_match ⇒ Boolean Also known as: no_match?
Whether NLU predicted NO_MATCH.
Corresponds to the JSON property noMatch
3259 3260 3261 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3259 def no_match @no_match end |
#no_user_input ⇒ Boolean Also known as: no_user_input?
Whether user provided no input.
Corresponds to the JSON property noUserInput
3265 3266 3267 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3265 def no_user_input @no_user_input end |
#reached_end_page ⇒ Boolean Also known as: reached_end_page?
Whether turn resulted in End Session page.
Corresponds to the JSON property reachedEndPage
3271 3272 3273 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3271 def reached_end_page @reached_end_page end |
#sentiment_magnitude ⇒ Float
Sentiment magnitude of the user utterance if sentiment was enabled.
Corresponds to the JSON property sentimentMagnitude
3278 3279 3280 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3278 def sentiment_magnitude @sentiment_magnitude end |
#sentiment_score ⇒ Float
Sentiment score of the user utterance if sentiment was enabled.
Corresponds to the JSON property sentimentScore
3284 3285 3286 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3284 def sentiment_score @sentiment_score end |
#user_escalated ⇒ Boolean Also known as: user_escalated?
Whether user was specifically asking for a live agent.
Corresponds to the JSON property userEscalated
3289 3290 3291 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3289 def user_escalated @user_escalated end |
#webhook_statuses ⇒ Array<String>
Human-readable statuses of the webhooks triggered during this turn.
Corresponds to the JSON property webhookStatuses
3295 3296 3297 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3295 def webhook_statuses @webhook_statuses end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3302 def update!(**args) @agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated) @dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used) @failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons) @no_match = args[:no_match] if args.key?(:no_match) @no_user_input = args[:no_user_input] if args.key?(:no_user_input) @reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page) @sentiment_magnitude = args[:sentiment_magnitude] if args.key?(:sentiment_magnitude) @sentiment_score = args[:sentiment_score] if args.key?(:sentiment_score) @user_escalated = args[:user_escalated] if args.key?(:user_escalated) @webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses) end |