Sha256: fbc521d7652351e078606880744eae8521a8d825dfd49a37c2d0622fea2bbb53

Contents?: true

Size: 630 Bytes

Versions: 2

Compression:

Stored size: 630 Bytes

Contents

module Bandwidth
  module Bxml
    class StopStream
      include Bandwidth::Bxml::Verb

      # Initializer
      # @param attributes [Hash] The attributes to add to the element. Defaults to an empty hash.
      def initialize(attributes = {})
        super("StopStream", nil, attributes)
        
        @attribute_map = {
          name: 'name' # [String]: The name of the stream to stop. This is either the user selected name when sending the <StartStream> verb, or the system generated name returned in the Media Stream Started webhook if <StartStream> was sent with no name attribute.
        }
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bandwidth-sdk-11.0.0.pre.beta.1.1 lib/bandwidth-sdk/models/bxml/verbs/stop_stream.rb
bandwidth-sdk-11.0.0.pre.beta.1 lib/bandwidth-sdk/models/bxml/verbs/stop_stream.rb