class EventMachine::Smsified::Response
The result object from the API. Used to access the parsed and raw HTTP response.
Attributes
data[R]
http[R]
Public Class Methods
new(parsed, raw)
click to toggle source
Provides the standard response for the library
@param [Object] an HTTParty result object
# File lib/em-smsified/response.rb, line 35 def initialize(parsed, raw) @data = parsed @http = raw end