Class: Segment::Analytics::Response

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status = 200, error = nil) ⇒ Response

public: Simple class to wrap responses from the API



11
12
13
14
# File 'lib/segment/analytics/response.rb', line 11

def initialize(status = 200, error = nil)
  @status = status
  @error  = error
end

Instance Attribute Details

#errorObject (readonly)

Returns the value of attribute error.



6
7
8
# File 'lib/segment/analytics/response.rb', line 6

def error
  @error
end

#statusObject (readonly)

Returns the value of attribute status.



6
7
8
# File 'lib/segment/analytics/response.rb', line 6

def status
  @status
end