lib/punchblock/event/unjoined.rb in punchblock-0.7.1 vs lib/punchblock/event/unjoined.rb in punchblock-0.7.2
- old
+ new
@@ -6,11 +6,11 @@
##
# Create an unjoined event
#
# @param [Hash] options
# @option options [String, Optional] :other_call_id the call ID that was unjoined
- # @option options [String, Optional] :mixer_id the mixer name that was unjoined
+ # @option options [String, Optional] :mixer_name the mixer name that was unjoined
#
# @return [Event::Unjoined] a formatted Rayo unjoined event
#
def self.new(options = {})
super().tap do |new_node|
@@ -30,21 +30,21 @@
write_attr :'call-id', other
end
##
# @return [String] the mixer name that was unjoined
- def mixer_id
- read_attr :'mixer-id'
+ def mixer_name
+ read_attr :'mixer-name'
end
##
# @param [String] other the mixer name that was unjoined
- def mixer_id=(other)
- write_attr :'mixer-id', other
+ def mixer_name=(other)
+ write_attr :'mixer-name', other
end
def inspect_attributes # :nodoc:
- [:other_call_id, :mixer_id] + super
+ [:other_call_id, :mixer_name] + super
end
end # Unjoined
end
end # Punchblock