class Annict::Response
Attributes
body[R]
headers[R]
status[R]
Public Class Methods
new(faraday_response)
click to toggle source
# File lib/annict/response.rb, line 5 def initialize(faraday_response) @body = faraday_response.body @headers = faraday_response.headers @status = faraday_response.status end