Class: Google::Apis::ChatV1::Emoji
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::Emoji
- 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
An emoji that is used as a reaction to a message.
Instance Attribute Summary collapse
-
#custom_emoji ⇒ Google::Apis::ChatV1::CustomEmoji
Represents a custom emoji.
-
#unicode ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Emoji
constructor
A new instance of Emoji.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Emoji
Returns a new instance of Emoji.
1162 1163 1164 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1162 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_emoji ⇒ Google::Apis::ChatV1::CustomEmoji
Represents a custom emoji.
Corresponds to the JSON property customEmoji
1155 1156 1157 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1155 def custom_emoji @custom_emoji end |
#unicode ⇒ String
Optional. A basic emoji represented by a unicode string.
Corresponds to the JSON property unicode
1160 1161 1162 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1160 def unicode @unicode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1167 1168 1169 1170 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1167 def update!(**args) @custom_emoji = args[:custom_emoji] if args.key?(:custom_emoji) @unicode = args[:unicode] if args.key?(:unicode) end |