Class: Google::Apis::ChatV1::EmojiReactionSummary
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::EmojiReactionSummary
- 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
-
#emoji ⇒ Google::Apis::ChatV1::Emoji
An emoji that is used as a reaction to a message.
-
#reaction_count ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EmojiReactionSummary
constructor
A new instance of EmojiReactionSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#emoji ⇒ Google::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_count ⇒ Fixnum
Output only. The total number of reactions using the associated emoji.
Corresponds to the JSON property reactionCount
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 |