Class: Twilio::TwiML::SsmlBreak
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
Overview
Adding a Pause in <Say>
Instance Attribute Summary
Attributes inherited from TwiML
Instance Method Summary collapse
- 
  
    
      #initialize(**keyword_args) {|_self| ... } ⇒ SsmlBreak 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SsmlBreak. 
Methods inherited from TwiML
#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml
Constructor Details
#initialize(**keyword_args) {|_self| ... } ⇒ SsmlBreak
Returns a new instance of SsmlBreak.
| 1405 1406 1407 1408 1409 1410 | # File 'lib/twilio-ruby/twiml/voice_response.rb', line 1405 def initialize(**keyword_args) super(**keyword_args) @name = 'break' yield(self) if block_given? end |