Class: Velocify::Agent
Class Method Summary collapse
-
.find_all(destruct: false, return_array: false) ⇒ Object
Retrieve the entire list of agents.
Methods included from Model
Class Method Details
.find_all(destruct: false, return_array: false) ⇒ Object
Retrieve the entire list of agents
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/velocify/agent.rb', line 7 def self.find_all destruct: false, return_array: false verify_credentials! request do destruct_response? destruct operation :get_agents authenticate? true transform do |resp| if return_array arrayify resp[:agents][:agent] else resp end end end end |