class VCR::ResponseStatus

def self.from_hash(hash)

Returns:
  • (ResponseStatus) - the response status

Parameters:
  • hash (Hash) -- the hash to use to construct the instance.
def self.from_hash(hash)
  new hash['code'], hash['message']
end