module Apitizer module Connection class Response attr_reader :code, :body def initialize(code:, body:) @code = code @body = body end end end end