# frozen_string_literal: true class EzClient::Response attr_accessor :http_response def initialize(http_response) self.http_response = http_response end def body http_response.body.to_s end def headers http_response.headers end def code http_response.code end alias status code def ok? code.between?(200, 299) end def redirect? code.between?(300, 399) end def client_error? code.between?(400, 499) end def server_error? code.between?(500, 599) end def error? client_error? || server_error? end end