class Response

Public Class Methods

new(arg) click to toggle source
# File lib/response.rb, line 3
def initialize(arg)
  @json = arg
end

Public Instance Methods

body() click to toggle source
# File lib/response.rb, line 7
def body
  @json
end