2019-10-16 06:52:30 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
module Constants::Report
|
2019-10-19 05:29:56 +00:00
|
|
|
ACCOUNT_METRICS = [:conversations_count,
|
|
|
|
:incoming_messages_count,
|
|
|
|
:outgoing_messages_count,
|
|
|
|
:avg_first_response_time,
|
|
|
|
:avg_resolution_time,
|
|
|
|
:resolutions_count].freeze
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2019-10-19 05:29:56 +00:00
|
|
|
AVG_ACCOUNT_METRICS = [:avg_first_response_time, :avg_resolution_time].freeze
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2019-10-19 05:29:56 +00:00
|
|
|
AGENT_METRICS = [:avg_first_response_time,
|
|
|
|
:avg_resolution_time,
|
|
|
|
:resolutions_count].freeze
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2019-10-19 05:29:56 +00:00
|
|
|
AVG_AGENT_METRICS = [:avg_first_response_time, :avg_resolution_time].freeze
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|