Class: Shingoncoder::Response

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(opts) ⇒ Response

Returns a new instance of Response.



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

def initialize(opts)
  properties = opts.with_indifferent_access
  @code = properties.delete(:code)
  @body = properties.fetch(:body, properties)
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



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

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



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

def code
  @code
end

Instance Method Details

#success?Boolean

Returns:

  • (Boolean)


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

def success?
  true
end