Class: Twilio::TwiML::Echo
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
Overview
<Echo> TwiML Verb
Instance Attribute Summary
Attributes inherited from TwiML
Instance Method Summary collapse
-
#initialize(**keyword_args) {|_self| ... } ⇒ Echo
constructor
A new instance of Echo.
Methods inherited from TwiML
#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml
Constructor Details
#initialize(**keyword_args) {|_self| ... } ⇒ Echo
Returns a new instance of Echo.
1532 1533 1534 1535 1536 1537 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1532 def initialize(**keyword_args) super(**keyword_args) @name = 'Echo' yield(self) if block_given? end |