module VirusTotal::Client::Action::Get

Public Instance Methods

get(id) click to toggle source

Retrieve information about an object

@param [String] id Object identifier

@return [Hash]

# File lib/virustotal/clients/actions/get.rb, line 14
def get(id)
  id = to_id(id)
  _get("/#{name}/#{id}") { |json| json }
end