Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCount

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCount

Returns a new instance of GoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCount.



5191
5192
5193
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5191

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

Instance Attribute Details

#audio_countFixnum

Corresponds to the JSON property audioCount

Returns:

  • (Fixnum)


5169
5170
5171
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5169

def audio_count
  @audio_count
end

#dtmf_countFixnum

Corresponds to the JSON property dtmfCount

Returns:

  • (Fixnum)


5174
5175
5176
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5174

def dtmf_count
  @dtmf_count
end

#event_countFixnum

Corresponds to the JSON property eventCount

Returns:

  • (Fixnum)


5179
5180
5181
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5179

def event_count
  @event_count
end

#intent_countFixnum

Corresponds to the JSON property intentCount

Returns:

  • (Fixnum)


5184
5185
5186
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5184

def intent_count
  @intent_count
end

#text_countFixnum

Corresponds to the JSON property textCount

Returns:

  • (Fixnum)


5189
5190
5191
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5189

def text_count
  @text_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5196
5197
5198
5199
5200
5201
5202
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5196

def update!(**args)
  @audio_count = args[:audio_count] if args.key?(:audio_count)
  @dtmf_count = args[:dtmf_count] if args.key?(:dtmf_count)
  @event_count = args[:event_count] if args.key?(:event_count)
  @intent_count = args[:intent_count] if args.key?(:intent_count)
  @text_count = args[:text_count] if args.key?(:text_count)
end