## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Taskrouter < Domain class V1 < Version class WorkspaceContext < InstanceContext class WorkerList < ListResource class WorkersStatisticsList < ListResource ## # Initialize the WorkersStatisticsList # @param [Version] version Version that contains the resource # @param [String] workspace_sid The ID of the Workflow this worker is associated # with # @return [WorkersStatisticsList] WorkersStatisticsList def initialize(version, workspace_sid: nil) super(version) # Path Solution @solution = {workspace_sid: workspace_sid} end ## # Provide a user friendly representation def to_s '#' end end class WorkersStatisticsPage < Page ## # Initialize the WorkersStatisticsPage # @param [Version] version Version that contains the resource # @param [Response] response Response from the API # @param [Hash] solution Path solution for the resource # @return [WorkersStatisticsPage] WorkersStatisticsPage def initialize(version, response, solution) super(version, response) # Path Solution @solution = solution end ## # Build an instance of WorkersStatisticsInstance # @param [Hash] payload Payload response from the API # @return [WorkersStatisticsInstance] WorkersStatisticsInstance def get_instance(payload) WorkersStatisticsInstance.new(@version, payload, workspace_sid: @solution[:workspace_sid], ) end ## # Provide a user friendly representation def to_s '' end end class WorkersStatisticsContext < InstanceContext ## # Initialize the WorkersStatisticsContext # @param [Version] version Version that contains the resource # @param [String] workspace_sid The workspace_sid # @return [WorkersStatisticsContext] WorkersStatisticsContext def initialize(version, workspace_sid) super(version) # Path Solution @solution = {workspace_sid: workspace_sid, } @uri = "/Workspaces/#{@solution[:workspace_sid]}/Workers/Statistics" end ## # Fetch a WorkersStatisticsInstance # @param [String] minutes Filter cumulative statistics by up to 'x' minutes in the # past. This is helpful for statistics for the last 15 minutes, 240 minutes (4 # hours), and 480 minutes (8 hours) to see trends. Defaults to 15 minutes. # @param [Time] start_date Filter cumulative statistics by a start date. This is # helpful for defining a range of statistics to capture. Input is a string of the # format: yyyy-MM-dd'T'HH:mm:ss'Z'. # @param [Time] end_date Filter cumulative statistics by a end date. This is # helpful for defining a range of statistics to capture. Input is a string of the # format: yyyy-MM-dd'T'HH:mm:ss'Z'. # @param [String] task_queue_sid Filter the real-time and cumulative statistics # based on Workers tied to a particular queue # @param [String] task_queue_name Filter the real-time and cumulative statistics # based on Workers tied to a particular queue # @param [String] friendly_name The friendly_name # @param [String] task_channel Filter cumulative statistics by TaskChannel. Takes # in a Unique Name ("voice", "sms", "default", etc.) or a TaskChannelSid. # @return [WorkersStatisticsInstance] Fetched WorkersStatisticsInstance def fetch(minutes: :unset, start_date: :unset, end_date: :unset, task_queue_sid: :unset, task_queue_name: :unset, friendly_name: :unset, task_channel: :unset) params = Twilio::Values.of({ 'Minutes' => minutes, 'StartDate' => Twilio.serialize_iso8601_datetime(start_date), 'EndDate' => Twilio.serialize_iso8601_datetime(end_date), 'TaskQueueSid' => task_queue_sid, 'TaskQueueName' => task_queue_name, 'FriendlyName' => friendly_name, 'TaskChannel' => task_channel, }) payload = @version.fetch( 'GET', @uri, params, ) WorkersStatisticsInstance.new(@version, payload, workspace_sid: @solution[:workspace_sid], ) end ## # Provide a user friendly representation def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#" end end class WorkersStatisticsInstance < InstanceResource ## # Initialize the WorkersStatisticsInstance # @param [Version] version Version that contains the resource # @param [Hash] payload payload that contains response from Twilio # @param [String] workspace_sid The ID of the Workflow this worker is associated # with # @return [WorkersStatisticsInstance] WorkersStatisticsInstance def initialize(version, payload, workspace_sid: nil) super(version) # Marshaled Properties @properties = { 'realtime' => payload['realtime'], 'cumulative' => payload['cumulative'], 'account_sid' => payload['account_sid'], 'workspace_sid' => payload['workspace_sid'], 'url' => payload['url'], } # Context @instance_context = nil @params = {'workspace_sid' => workspace_sid, } end ## # Generate an instance context for the instance, the context is capable of # performing various actions. All instance actions are proxied to the context # @return [WorkersStatisticsContext] WorkersStatisticsContext for this WorkersStatisticsInstance def context unless @instance_context @instance_context = WorkersStatisticsContext.new(@version, @params['workspace_sid'], ) end @instance_context end ## # @return [Hash] The realtime def realtime @properties['realtime'] end ## # @return [Hash] The cumulative def cumulative @properties['cumulative'] end ## # @return [String] The account_sid def account_sid @properties['account_sid'] end ## # @return [String] The workspace_sid def workspace_sid @properties['workspace_sid'] end ## # @return [String] The url def url @properties['url'] end ## # Fetch a WorkersStatisticsInstance # @param [String] minutes Filter cumulative statistics by up to 'x' minutes in the # past. This is helpful for statistics for the last 15 minutes, 240 minutes (4 # hours), and 480 minutes (8 hours) to see trends. Defaults to 15 minutes. # @param [Time] start_date Filter cumulative statistics by a start date. This is # helpful for defining a range of statistics to capture. Input is a string of the # format: yyyy-MM-dd'T'HH:mm:ss'Z'. # @param [Time] end_date Filter cumulative statistics by a end date. This is # helpful for defining a range of statistics to capture. Input is a string of the # format: yyyy-MM-dd'T'HH:mm:ss'Z'. # @param [String] task_queue_sid Filter the real-time and cumulative statistics # based on Workers tied to a particular queue # @param [String] task_queue_name Filter the real-time and cumulative statistics # based on Workers tied to a particular queue # @param [String] friendly_name The friendly_name # @param [String] task_channel Filter cumulative statistics by TaskChannel. Takes # in a Unique Name ("voice", "sms", "default", etc.) or a TaskChannelSid. # @return [WorkersStatisticsInstance] Fetched WorkersStatisticsInstance def fetch(minutes: :unset, start_date: :unset, end_date: :unset, task_queue_sid: :unset, task_queue_name: :unset, friendly_name: :unset, task_channel: :unset) context.fetch( minutes: minutes, start_date: start_date, end_date: end_date, task_queue_sid: task_queue_sid, task_queue_name: task_queue_name, friendly_name: friendly_name, task_channel: task_channel, ) end ## # Provide a user friendly representation def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "" end ## # Provide a detailed, user friendly representation def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "" end end end end end end end end