class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1CalculateStatsResponseTimeSeriesInterval

A single interval in a time series.

Attributes

conversation_count[RW]

The number of conversations created in this interval. Corresponds to the JSON property `conversationCount` @return [Fixnum]

start_time[RW]

The start time of this interval. Corresponds to the JSON property `startTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 372
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 377
def update!(**args)
  @conversation_count = args[:conversation_count] if args.key?(:conversation_count)
  @start_time = args[:start_time] if args.key?(:start_time)
end