Class: Twilio::TwiML::Sms

Inherits:
TwiML
  • Object
show all
Defined in:
lib/twilio-ruby/twiml/voice_response.rb

Overview

<Sms> TwiML Noun

Instance Attribute Summary

Attributes inherited from TwiML

#indent, #name

Instance Method Summary collapse

Methods inherited from TwiML

#append, to_lower_camel_case, #to_s, #xml

Constructor Details

#initialize(message, **keyword_args) {|_self| ... } ⇒ Sms

Returns a new instance of Sms.

Yields:

  • (_self)

Yield Parameters:



194
195
196
197
198
199
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 194

def initialize(message, **keyword_args)
  super(**keyword_args)
  @name = 'Sms'
  @value = message
  yield(self) if block_given?
end