class Zenvia::Sms
Attributes
cel_phone[RW]
msg[RW]
Public Class Methods
new(id_sms, msg, cel_phone)
click to toggle source
# File lib/zenvia/sms.rb, line 7 def initialize(id_sms, msg, cel_phone) @id_sms = id_sms @msg = msg @cel_phone = cel_phone end
Public Instance Methods
forward()
click to toggle source
# File lib/zenvia/sms.rb, line 13 def forward send_to_zenvia(@id_sms, @msg, @cel_phone) end