class SmsTeknik::Message
Attributes
body[RW]
from[RW]
to[RW]
Public Class Methods
new(attributes = {})
click to toggle source
# File lib/sms_teknik/message.rb, line 5 def initialize(attributes = {}) @from = attributes[:from] @to = attributes[:to] @body = attributes[:body] end