Class: Discorb::Gateway::MessagePinEvent
- Inherits:
-
GatewayEvent
- Object
- GatewayEvent
- Discorb::Gateway::MessagePinEvent
- Defined in:
- lib/discorb/gateway.rb
Overview
Represents a message pin event.
Instance Attribute Summary collapse
-
#message -> Discorb::Message
readonly
The message that was pinned.
-
#pinned? -> Boolean
readonly
Whether the message was pinned.
-
#type -> :pinned, :unpinned
readonly
The type of event.
-
#unpinned? -> Boolean
readonly
Whether the message was unpinned.
Instance Method Summary collapse
-
#initialize(client, data, message) -> MessagePinEvent
constructor
A new instance of MessagePinEvent.
Constructor Details
#initialize(client, data, message) -> MessagePinEvent
Returns a new instance of MessagePinEvent.
427 428 429 430 431 432 433 434 435 436 437 438 |
# File 'lib/discorb/gateway.rb', line 427 def initialize(client, data, ) @client = client @data = data @message = @type = if .nil? :unknown elsif @message.pinned? :pinned else :unpinned end end |
Instance Attribute Details
#message -> Discorb::Message (readonly)
Returns The message that was pinned.
418 419 420 |
# File 'lib/discorb/gateway.rb', line 418 def @message end |
#pinned? -> Boolean (readonly)
Returns Whether the message was pinned.
427 428 429 430 431 432 433 434 435 436 437 438 |
# File 'lib/discorb/gateway.rb', line 427 def initialize(client, data, ) @client = client @data = data @message = @type = if .nil? :unknown elsif @message.pinned? :pinned else :unpinned end end |
#type -> :pinned, :unpinned (readonly)
Returns The type of event.
420 421 422 |
# File 'lib/discorb/gateway.rb', line 420 def type @type end |
#unpinned? -> Boolean (readonly)
Returns Whether the message was unpinned.
427 428 429 430 431 432 433 434 435 436 437 438 |
# File 'lib/discorb/gateway.rb', line 427 def initialize(client, data, ) @client = client @data = data @message = @type = if .nil? :unknown elsif @message.pinned? :pinned else :unpinned end end |