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