Sha256: 3bb903443d2ece6c984c9b93942cbc457ecf01295fb921f774d07aa1b162a275
Contents?: true
Size: 790 Bytes
Versions: 23
Compression:
Stored size: 790 Bytes
Contents
# encoding: utf-8 module Punchblock class Event class Unjoined < Event register :unjoined, :core ## # @return [String] the call ID that was unjoined def call_id read_attr :'call-id' end ## # @param [String] other the call ID that was unjoined def call_id=(other) write_attr :'call-id', other end ## # @return [String] the mixer name that was unjoined def mixer_name read_attr :'mixer-name' end ## # @param [String] other the mixer name that was unjoined def mixer_name=(other) write_attr :'mixer-name', other end def inspect_attributes # :nodoc: [:call_id, :mixer_name] + super end end # Unjoined end end # Punchblock
Version data entries
23 entries across 23 versions & 1 rubygems