Sha256: 7cf39dff39efa47e97c93e0804d8a2d8e807b3433993eac26eb950c20dd5b74e
Contents?: true
Size: 701 Bytes
Versions: 14
Compression:
Stored size: 701 Bytes
Contents
module Bandwidth module Bxml class Ring < Bandwidth::Bxml::Verb # Initializer # @param attributes [Hash] The attributes to add to the element. Defaults to an empty hash. def initialize(attributes = {}) super('Ring', nil, attributes) @attribute_map = { duration: 'duration', # Optional [Number]: How many seconds to play ringing on the call. Default value is 5. Range: decimal values between 0.1 - 86400. answer_call: 'answerCall', # Optional [Boolean]: A boolean indicating whether or not to answer the call when Ring is executed on an unanswered incoming call. Default value is 'true'. } end end end end
Version data entries
14 entries across 14 versions & 1 rubygems