class Bond::Message

Attributes

content[RW]
guid[RW]
handwriting[RW]
recipient_address[RW]
sender_address[RW]
stationary_id[RW]

Public Class Methods

new(attributes = {}) click to toggle source

@param [Hash] attributes

# File lib/bond/message.rb, line 9
def initialize(attributes = {})
  attributes.each { |name, value| instance_variable_set("@#{name}", value) }
end