Class: Hoss::Event::Request Private

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/hoss/event.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeRequest

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Request.



32
33
34
# File 'lib/hoss/event.rb', line 32

def initialize
  @headers = {}
end

Instance Attribute Details

#bodyObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



35
36
37
# File 'lib/hoss/event.rb', line 35

def body
  @body
end

#headersObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



35
36
37
# File 'lib/hoss/event.rb', line 35

def headers
  @headers
end

#methodObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



35
36
37
# File 'lib/hoss/event.rb', line 35

def method
  @method
end

#received_atObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



35
36
37
# File 'lib/hoss/event.rb', line 35

def received_at
  @received_at
end

#urlObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



35
36
37
# File 'lib/hoss/event.rb', line 35

def url
  @url
end