Class: RubyCord::Client::Gateway::Event::ReactionEvent

Inherits:
RubyCord::Client::Gateway::Event show all
Defined in:
lib/rubycord/client/gateway/event.rb

Overview

Represents a reaction event.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RubyCord::Client::Gateway::Event

#inspect

Instance Attribute Details

#channelnil, RubyCord::Channel (readonly)

Note:

This method returns an object from client cache. it will return nil if the object is not in cache.

Returns:

  • (nil)

    The object wasn't cached.

  • (RubyCord::Channel)

    The channel the message was sent in.



46
47
48
# File 'lib/rubycord/client/gateway/event.rb', line 46

def channel
  @channel
end

#channel_idRubyCord::Snowflake (readonly)

Returns The ID of the channel the message was sent in.

Returns:



35
36
37
# File 'lib/rubycord/client/gateway/event.rb', line 35

def channel_id
  @channel_id
end

#dataHash (readonly)

Returns The raw data of the event.

Returns:

  • (Hash)

    The raw data of the event.



30
31
32
# File 'lib/rubycord/client/gateway/event.rb', line 30

def data
  @data
end

#emojiRubyCord::UnicodeEmoji, RubyCord::PartialEmoji (readonly)

Returns The emoji that was reacted with.

Returns:



54
55
56
# File 'lib/rubycord/client/gateway/event.rb', line 54

def emoji
  @emoji
end

#guildnil, RubyCord::Guild (readonly)

Note:

This method returns an object from client cache. it will return nil if the object is not in cache.

Returns:

  • (nil)

    The object wasn't cached.

  • (RubyCord::Guild)

    The guild the message was sent in.



49
50
51
# File 'lib/rubycord/client/gateway/event.rb', line 49

def guild
  @guild
end

#guild_idRubyCord::Snowflake (readonly)

Returns The ID of the guild the message was sent in.

Returns:



39
40
41
# File 'lib/rubycord/client/gateway/event.rb', line 39

def guild_id
  @guild_id
end

#messagenil, RubyCord::Message (readonly)

Note:

This method returns an object from client cache. it will return nil if the object is not in cache.

Returns:

  • (nil)

    The object wasn't cached.

  • (RubyCord::Message)

    The message the reaction was sent in.



52
53
54
# File 'lib/rubycord/client/gateway/event.rb', line 52

def message
  @message
end

#message_idRubyCord::Snowflake (readonly)

Returns The ID of the message.

Returns:



37
38
39
# File 'lib/rubycord/client/gateway/event.rb', line 37

def message_id
  @message_id
end

#usernil, ... (readonly) Also known as: member

Note:

This method returns an object from client cache. it will return nil if the object is not in cache.

Returns:



42
43
44
# File 'lib/rubycord/client/gateway/event.rb', line 42

def user
  @user
end

#user_idRubyCord::Snowflake (readonly) Also known as: member_id

Returns The ID of the user who reacted.

Returns:



32
33
34
# File 'lib/rubycord/client/gateway/event.rb', line 32

def user_id
  @user_id
end

Instance Method Details

#fetch_message(force: false) ⇒ Async::Task<RubyCord::Message>

Fetch the message. If message is cached, it will be returned.

Parameters:

  • force (Boolean) (defaults to: false)

    Whether to force fetching the message.

Returns:



112
113
114
115
116
117
118
# File 'lib/rubycord/client/gateway/event.rb', line 112

def fetch_message(force: false)
  Async do
    next @message if !force && @message

    @message = @channel.fetch_message(@message_id).wait
  end
end