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