class JSend::SucessResponse

Attributes

data[R]

Public Class Methods

new(data) click to toggle source
# File lib/jsend/responses/success_response.rb, line 9
def initialize(data)
  @status = JSend::SUCCESS
  @data = data
end