class Github::Client::Activity::Events

def org(*args)

Other tags:
    Api: - public
def org(*args)
  arguments(args, required: [:name])
  response = get_request("/orgs/#{arguments.name}/events", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end