Sha256: 92ee65413d4f6509483fa5b1fecc78c1aba66e3bf39260833fc32966cf129a07
Contents?: true
Size: 751 Bytes
Versions: 14
Compression:
Stored size: 751 Bytes
Contents
module Bandwidth module Bxml class StopTranscription < Bandwidth::Bxml::Verb # Initializer # @param attributes [Hash] The attributes to add to the element. Defaults to an empty hash. def initialize(attributes = {}) super('StopTranscription', nil, attributes) @attribute_map = { name: 'name' # [String]: The name of the real-time transcription to stop. This is either the user selected name when sending the <StartTranscription> verb, or the system generated name returned in the Real-Time Transcription Started webhook if <StartTranscription> was sent with no name attribute. If no name is specified, then all active call transcriptions will be stopped. } end end end end
Version data entries
14 entries across 14 versions & 1 rubygems