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