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.



1142
1143
1144
# File 'lib/google/apis/chat_v1/classes.rb', line 1142

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



1135
1136
1137
# File 'lib/google/apis/chat_v1/classes.rb', line 1135

def emoji
  @emoji
end

#reaction_countFixnum

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

Returns:

  • (Fixnum)


1140
1141
1142
# File 'lib/google/apis/chat_v1/classes.rb', line 1140

def reaction_count
  @reaction_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1147
1148
1149
1150
# File 'lib/google/apis/chat_v1/classes.rb', line 1147

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