Class: Google::Apis::ChatV1::EmojiReactionSummary

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb

Overview

The number of people who reacted to a message with a specific emoji.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EmojiReactionSummary

Returns a new instance of EmojiReactionSummary.



1187
1188
1189
# File 'lib/google/apis/chat_v1/classes.rb', line 1187

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#emojiGoogle::Apis::ChatV1::Emoji

An emoji that is used as a reaction to a message. Corresponds to the JSON property emoji



1180
1181
1182
# File 'lib/google/apis/chat_v1/classes.rb', line 1180

def emoji
  @emoji
end

#reaction_countFixnum

Output only. The total number of reactions using the associated emoji. Corresponds to the JSON property reactionCount

Returns:

  • (Fixnum)


1185
1186
1187
# File 'lib/google/apis/chat_v1/classes.rb', line 1185

def reaction_count
  @reaction_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1192
1193
1194
1195
# File 'lib/google/apis/chat_v1/classes.rb', line 1192

def update!(**args)
  @emoji = args[:emoji] if args.key?(:emoji)
  @reaction_count = args[:reaction_count] if args.key?(:reaction_count)
end