class Sinamak::NoopResponse

Attributes

body_object[R]

Public Class Methods

new() click to toggle source
# File lib/sinamak/faraday/response.rb, line 7
def initialize
  @body_object = OpenStruct.new
end

Public Instance Methods

successful?() click to toggle source
# File lib/sinamak/faraday/response.rb, line 11
def successful?
  false
end

Private Instance Methods

status_200?() click to toggle source
# File lib/sinamak/faraday/response.rb, line 17
def status_200?
  false
end