class Inferno::Entities::Message

A `Message` represents a message generated during a test.

@attr_accessor [String] id of the message @attr_accessor [String] index of the message. Used for ordering. @attr_accessor [String] result_id @attr_accessor [Inferno::Entities::Result] result @attr_accessor [String] type @attr_accessor [String] message @attr_accessor [Time] created_at @attr_accessor [Time] updated_at

Constants

ATTRIBUTES
TYPES

Public Class Methods

new(params) click to toggle source
Calls superclass method Inferno::Entities::Entity::new
# File lib/inferno/entities/message.rb, line 19
def initialize(params)
  super(params, ATTRIBUTES)
end