class VirustotalAPI::Group
A class for '/groups' API
Public Class Methods
find(group_id, api_key)
click to toggle source
Find a Group
.
@param [String] group_id to find @param [String] api_key The key for virustotal @return [VirustotalAPI::User] Report
# File lib/virustotal_api/group.rb, line 13 def self.find(group_id, api_key) report = perform("/groups/#{group_id}", api_key) new(report) end