Class: Bandwidth::Voice::Record

Inherits:
Object
  • Object
show all
Includes:
XmlVerb
Defined in:
lib/bandwidth/voice_lib/bxml/verbs/record.rb

Overview

The Record verb is used to trigger call recording

Instance Method Summary collapse

Methods included from XmlVerb

#compact_hash, #initialize, #method_missing

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Bandwidth::Voice::XmlVerb

Instance Method Details

#to_bxml(xml) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/bandwidth/voice_lib/bxml/verbs/record.rb', line 9

def to_bxml(xml)
  xml.Record(compact_hash({
   'tag' => tag,
   'username' => username,
   'password' => password,
   'recordCompleteUrl' => record_complete_url,
   'recordCompleteMethod' => record_complete_method,
   'recordingAvailableUrl' => recording_available_url,
   'recordingAvailableMethod' => recording_available_method,
   'terminatingDigits' => terminating_digits,
   'maxDuration' => max_duration,
   'fileFormat' => file_format,
   'transcribe' => transcribe,
   'transcriptionAvailableUrl' => transcription_available_url,
   'transcriptionAvailableMethod' => transcription_available_method,
   'silenceTimeout' => silence_timeout,
   'recordCompleteFallbackUrl' => record_complete_fallback_url,
   'recordCompleteFallbackMethod' => record_complete_fallback_method,
   'fallbackUsername' => fallback_username,
   'fallbackPassword' => fallback_password
  }))
end