Class: Pbx::Messages::QueueMemberUpdated
- Inherits:
-
Bubbletea::Message
- Object
- Bubbletea::Message
- Pbx::Messages::QueueMemberUpdated
- Defined in:
- lib/pbx/messages.rb
Instance Attribute Summary collapse
-
#interface ⇒ Object
readonly
Returns the value of attribute interface.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#paused ⇒ Object
readonly
Returns the value of attribute paused.
-
#queue ⇒ Object
readonly
Returns the value of attribute queue.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(queue:, interface:, name:, status:, paused:) ⇒ QueueMemberUpdated
constructor
A new instance of QueueMemberUpdated.
Constructor Details
#initialize(queue:, interface:, name:, status:, paused:) ⇒ QueueMemberUpdated
Returns a new instance of QueueMemberUpdated.
174 175 176 177 178 179 180 181 |
# File 'lib/pbx/messages.rb', line 174 def initialize(queue:, interface:, name:, status:, paused:) super() @queue = queue @interface = interface @name = name @status = status @paused = paused end |
Instance Attribute Details
#interface ⇒ Object (readonly)
Returns the value of attribute interface.
172 173 174 |
# File 'lib/pbx/messages.rb', line 172 def interface @interface end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
172 173 174 |
# File 'lib/pbx/messages.rb', line 172 def name @name end |
#paused ⇒ Object (readonly)
Returns the value of attribute paused.
172 173 174 |
# File 'lib/pbx/messages.rb', line 172 def paused @paused end |
#queue ⇒ Object (readonly)
Returns the value of attribute queue.
172 173 174 |
# File 'lib/pbx/messages.rb', line 172 def queue @queue end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
172 173 174 |
# File 'lib/pbx/messages.rb', line 172 def status @status end |