class Twilio::TwiML::Body
<Body> TwiML
Noun
Public Class Methods
new(message, **keyword_args) { |self| ... }
click to toggle source
Calls superclass method
# File lib/twilio-ruby/twiml/messaging_response.rb 99 def initialize(message, **keyword_args) 100 super(**keyword_args) 101 @name = 'Body' 102 @value = message 103 yield(self) if block_given? 104 end