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