class Github::Client::Activity::Events

def network(*args)

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