Class: Twilio::TwiML::Transcription
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
Overview
<Transcription> TwiML Noun
Instance Attribute Summary
Attributes inherited from TwiML
Instance Method Summary collapse
-
#config(name: nil, value: nil, **keyword_args) ⇒ Object
- Create a new <Config> element name
- The name of the custom config value
- The value of the custom config keyword_args
-
additional attributes.
-
#initialize(**keyword_args) {|_self| ... } ⇒ Transcription
constructor
A new instance of Transcription.
-
#parameter(name: nil, value: nil, **keyword_args) ⇒ Object
- Create a new <Parameter> element name
- The name of the custom parameter value
- The value of the custom parameter keyword_args
-
additional attributes.
Methods inherited from TwiML
#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml
Constructor Details
#initialize(**keyword_args) {|_self| ... } ⇒ Transcription
Returns a new instance of Transcription.
404 405 406 407 408 409 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 404 def initialize(**keyword_args) super(**keyword_args) @name = 'Transcription' yield(self) if block_given? end |
Instance Method Details
#config(name: nil, value: nil, **keyword_args) ⇒ Object
Create a new <Config> element
- name
-
The name of the custom config
- value
-
The value of the custom config
- keyword_args
-
additional attributes
416 417 418 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 416 def config(name: nil, value: nil, **keyword_args) append(Config.new(name: name, value: value, **keyword_args)) end |
#parameter(name: nil, value: nil, **keyword_args) ⇒ Object
Create a new <Parameter> element
- name
-
The name of the custom parameter
- value
-
The value of the custom parameter
- keyword_args
-
additional attributes
425 426 427 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 425 def parameter(name: nil, value: nil, **keyword_args) append(Parameter.new(name: name, value: value, **keyword_args)) end |