Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount
- 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
-
#direct_intent_count ⇒ Fixnum
Corresponds to the JSON property
directIntentCount. -
#event_count ⇒ Fixnum
Corresponds to the JSON property
eventCount. -
#intent_count ⇒ Fixnum
Corresponds to the JSON property
intentCount. -
#no_input_count ⇒ Fixnum
Corresponds to the JSON property
noInputCount. -
#no_match_count ⇒ Fixnum
Corresponds to the JSON property
noMatchCount. -
#parameter_filling_count ⇒ Fixnum
Corresponds to the JSON property
parameterFillingCount. -
#unspecified_count ⇒ Fixnum
Corresponds to the JSON property
unspecifiedCount.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount
Returns a new instance of GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount.
5146 5147 5148 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5146 def initialize(**args) update!(**args) end |
Instance Attribute Details
#direct_intent_count ⇒ Fixnum
Corresponds to the JSON property directIntentCount
5114 5115 5116 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5114 def direct_intent_count @direct_intent_count end |
#event_count ⇒ Fixnum
Corresponds to the JSON property eventCount
5119 5120 5121 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5119 def event_count @event_count end |
#intent_count ⇒ Fixnum
Corresponds to the JSON property intentCount
5124 5125 5126 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5124 def intent_count @intent_count end |
#no_input_count ⇒ Fixnum
Corresponds to the JSON property noInputCount
5129 5130 5131 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5129 def no_input_count @no_input_count end |
#no_match_count ⇒ Fixnum
Corresponds to the JSON property noMatchCount
5134 5135 5136 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5134 def no_match_count @no_match_count end |
#parameter_filling_count ⇒ Fixnum
Corresponds to the JSON property parameterFillingCount
5139 5140 5141 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5139 def parameter_filling_count @parameter_filling_count end |
#unspecified_count ⇒ Fixnum
Corresponds to the JSON property unspecifiedCount
5144 5145 5146 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5144 def unspecified_count @unspecified_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5151 5152 5153 5154 5155 5156 5157 5158 5159 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5151 def update!(**args) @direct_intent_count = args[:direct_intent_count] if args.key?(:direct_intent_count) @event_count = args[:event_count] if args.key?(:event_count) @intent_count = args[:intent_count] if args.key?(:intent_count) @no_input_count = args[:no_input_count] if args.key?(:no_input_count) @no_match_count = args[:no_match_count] if args.key?(:no_match_count) @parameter_filling_count = args[:parameter_filling_count] if args.key?(:parameter_filling_count) @unspecified_count = args[:unspecified_count] if args.key?(:unspecified_count) end |