Class: Twilio::TwiML::Receive
- Defined in:
- lib/twilio-ruby/twiml/fax_response.rb
Overview
<Receive> TwiML Verb
Instance Attribute Summary
Attributes inherited from TwiML
Instance Method Summary collapse
-
#initialize(**keyword_args) {|_self| ... } ⇒ Receive
constructor
A new instance of Receive.
Methods inherited from TwiML
#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml
Constructor Details
#initialize(**keyword_args) {|_self| ... } ⇒ Receive
Returns a new instance of Receive.
37 38 39 40 41 42 |
# File 'lib/twilio-ruby/twiml/fax_response.rb', line 37 def initialize(**keyword_args) super(**keyword_args) @name = 'Receive' yield(self) if block_given? end |