Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationMetrics
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationMetrics
- 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
Instance Attribute Summary collapse
-
#average_match_confidence ⇒ Float
Corresponds to the JSON property
averageMatchConfidence. -
#has_end_interaction ⇒ Boolean
(also: #has_end_interaction?)
Corresponds to the JSON property
hasEndInteraction. -
#has_live_agent_handoff ⇒ Boolean
(also: #has_live_agent_handoff?)
Corresponds to the JSON property
hasLiveAgentHandoff. -
#input_audio_duration ⇒ String
Corresponds to the JSON property
inputAudioDuration. -
#interaction_count ⇒ Fixnum
Corresponds to the JSON property
interactionCount. -
#match_type_count ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount
Corresponds to the JSON property
matchTypeCount. -
#max_webhook_latency ⇒ String
Corresponds to the JSON property
maxWebhookLatency. -
#output_audio_duration ⇒ String
Corresponds to the JSON property
outputAudioDuration. -
#query_input_count ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCount
Corresponds to the JSON property
queryInputCount.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationMetrics
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ConversationMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationMetrics
Returns a new instance of GoogleCloudDialogflowCxV3beta1ConversationMetrics.
5083 5084 5085 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5083 def initialize(**args) update!(**args) end |
Instance Attribute Details
#average_match_confidence ⇒ Float
Corresponds to the JSON property averageMatchConfidence
5039 5040 5041 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5039 def average_match_confidence @average_match_confidence end |
#has_end_interaction ⇒ Boolean Also known as: has_end_interaction?
Corresponds to the JSON property hasEndInteraction
5044 5045 5046 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5044 def has_end_interaction @has_end_interaction end |
#has_live_agent_handoff ⇒ Boolean Also known as: has_live_agent_handoff?
Corresponds to the JSON property hasLiveAgentHandoff
5050 5051 5052 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5050 def has_live_agent_handoff @has_live_agent_handoff end |
#input_audio_duration ⇒ String
Corresponds to the JSON property inputAudioDuration
5056 5057 5058 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5056 def input_audio_duration @input_audio_duration end |
#interaction_count ⇒ Fixnum
Corresponds to the JSON property interactionCount
5061 5062 5063 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5061 def interaction_count @interaction_count end |
#match_type_count ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount
Corresponds to the JSON property matchTypeCount
5066 5067 5068 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5066 def match_type_count @match_type_count end |
#max_webhook_latency ⇒ String
Corresponds to the JSON property maxWebhookLatency
5071 5072 5073 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5071 def max_webhook_latency @max_webhook_latency end |
#output_audio_duration ⇒ String
Corresponds to the JSON property outputAudioDuration
5076 5077 5078 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5076 def output_audio_duration @output_audio_duration end |
#query_input_count ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCount
Corresponds to the JSON property queryInputCount
5081 5082 5083 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5081 def query_input_count @query_input_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5088 def update!(**args) @average_match_confidence = args[:average_match_confidence] if args.key?(:average_match_confidence) @has_end_interaction = args[:has_end_interaction] if args.key?(:has_end_interaction) @has_live_agent_handoff = args[:has_live_agent_handoff] if args.key?(:has_live_agent_handoff) @input_audio_duration = args[:input_audio_duration] if args.key?(:input_audio_duration) @interaction_count = args[:interaction_count] if args.key?(:interaction_count) @match_type_count = args[:match_type_count] if args.key?(:match_type_count) @max_webhook_latency = args[:max_webhook_latency] if args.key?(:max_webhook_latency) @output_audio_duration = args[:output_audio_duration] if args.key?(:output_audio_duration) @query_input_count = args[:query_input_count] if args.key?(:query_input_count) end |