lib/punchblock/event/unjoined.rb in punchblock-0.11.0 vs lib/punchblock/event/unjoined.rb in punchblock-0.12.0

- old
+ new

@@ -5,17 +5,17 @@ class Unjoined < Event register :unjoined, :core ## # @return [String] the call ID that was unjoined - def other_call_id + def call_id read_attr :'call-id' end ## # @param [String] other the call ID that was unjoined - def other_call_id=(other) + def call_id=(other) write_attr :'call-id', other end ## # @return [String] the mixer name that was unjoined @@ -28,10 +28,10 @@ def mixer_name=(other) write_attr :'mixer-name', other end def inspect_attributes # :nodoc: - [:other_call_id, :mixer_name] + super + [:call_id, :mixer_name] + super end end # Unjoined end end # Punchblock