Sha256: 30631360df75e948ba4d395c29d142949839ac75827e24457ac360a3d46c5a01

Contents?: true

Size: 544 Bytes

Versions: 2

Compression:

Stored size: 544 Bytes

Contents

module Bandwidth
  module Bxml
    class StreamParam
      include Bandwidth::Bxml::Verb

      # Initializer
      # @param attributes [Hash] The attributes to add to the element. Defaults to an empty hash.
      def initialize(attributes = {})
        super("StreamParam", nil, attributes)
        
        @attribute_map = {
          name: 'name',   # [String]: The name of this parameter, up to 256 characters.
          value: 'value', # [String]: The value of this parameter, up to 2048 characters.
        }
      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/stream_param.rb
bandwidth-sdk-11.0.0.pre.beta.1 lib/bandwidth-sdk/models/bxml/verbs/stream_param.rb