class Slack::Http::Result

Attributes

body[R]
code[R]
header[R]
msg[R]

Public Class Methods

new(code: nil, msg: nil, header: nil, body: nil) click to toggle source
# File lib/slack/http/result.rb, line 5
def initialize(code: nil, msg: nil, header: nil, body: nil)
  @code = code
  @msg = msg
  @header = header
  @body = body
end