Class: Pinterest::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/pinterest/response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(faraday_response) ⇒ Response

Returns a new instance of Response.



5
6
7
8
9
# File 'lib/pinterest/response.rb', line 5

def initialize(faraday_response)
  @status  = faraday_response.status
  @headers = faraday_response.headers
  @body    = faraday_response.body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



3
4
5
# File 'lib/pinterest/response.rb', line 3

def body
  @body
end

#headersObject (readonly)

Returns the value of attribute headers.



3
4
5
# File 'lib/pinterest/response.rb', line 3

def headers
  @headers
end

#statusObject (readonly)

Returns the value of attribute status.



3
4
5
# File 'lib/pinterest/response.rb', line 3

def status
  @status
end

Instance Method Details

#success?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/pinterest/response.rb', line 11

def success?
  status.between?(200, 299)
end