Sha256: 60f945f46c675f5cbaee26178ca32d6f5fe3f479568f0c641efb4dc831cdfc17
Contents?: true
Size: 447 Bytes
Versions: 21
Compression:
Stored size: 447 Bytes
Contents
module Parliament module Response # An API response built from API data. # # @since 0.7.5. # @attr_reader [HTTPResponse] response the HTTPResponse from the API. class BaseResponse attr_reader :response # Creates a Parliament::BaseResponse object. # # @param [HTTPResponse] response an HTTPResponse from the API. def initialize(response) @response = response end end end end
Version data entries
21 entries across 21 versions & 1 rubygems