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