Sha256: 6afd6b672989d6b5979c8dd4f8abc3a1a10f086cc0364b00256580dbcad80406

Contents?: true

Size: 503 Bytes

Versions: 3

Compression:

Stored size: 503 Bytes

Contents

# encoding: utf-8

require 'adhearsion/rayo/command_node'

module Adhearsion
  module Rayo
    module Command
      class Unjoin < CommandNode
        register :unjoin, :core

        # @return [String] the call ID to unjoin
        attribute :call_uri
        alias :call_id= :call_uri=

        # @return [String] the mixer name to unjoin
        attribute :mixer_name

        def rayo_attributes
          {'call-uri' => call_uri, 'mixer-name' => mixer_name}
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
adhearsion-3.0.0.rc1 lib/adhearsion/rayo/command/unjoin.rb
adhearsion-3.0.0.beta2 lib/adhearsion/rayo/command/unjoin.rb
adhearsion-3.0.0.beta1 lib/adhearsion/rayo/command/unjoin.rb