# encoding: utf-8 module OneApm module Collector module Commands class AgentCommand attr_reader :id, :name, :arguments def initialize(raw_collector_command) @id = raw_collector_command[0] @name = raw_collector_command[1]["name"] @arguments = raw_collector_command[1]["arguments"] end end end end end