class GMO::Response

Attributes

body[R]
headers[R]
status[R]

Public Class Methods

new(status, body, headers) click to toggle source
   # File lib/gmo/http_services.rb
 8 def initialize(status, body, headers)
 9   @status  = status
10   @body    = body
11   @headers = headers
12 end