class LHC::Response

def initialize(raw, request, from_cache: false)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (Typhoeus::Response raw, LHC::Request request, from_cache: false) -> void

This signature was generated using 32 samples from 3 applications.

and the associated request.
A response is initalized with the underlying raw response (typhoeus in our case)
def initialize(raw, request, from_cache: false)
  self.request = request
  self.raw = raw
  @from_cache = from_cache
end