class Twilio::TwiML::Sms
<Sms> TwiML
Noun
Public Class Methods
new(message, **keyword_args) { |self| ... }
click to toggle source
Calls superclass method
Twilio::TwiML::TwiML::new
# File lib/twilio-ruby/twiml/voice_response.rb 772 def initialize(message, **keyword_args) 773 super(**keyword_args) 774 @name = 'Sms' 775 @value = message 776 yield(self) if block_given? 777 end