class Heroics::Link::CachedResponse

Attributes

body[R]
headers[R]
status[R]

Public Class Methods

new(status, body, headers) click to toggle source
# File lib/heroics/link.rb, line 156
def initialize(status, body, headers)
  @status = status
  @body = body
  @headers = headers
end