Class: Google::Apis::ChatV1::Emoji

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

An emoji that is used as a reaction to a message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Emoji

Returns a new instance of Emoji.



1117
1118
1119
# File 'lib/google/apis/chat_v1/classes.rb', line 1117

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

Instance Attribute Details

#custom_emojiGoogle::Apis::ChatV1::CustomEmoji

Represents a custom emoji. Corresponds to the JSON property customEmoji



1110
1111
1112
# File 'lib/google/apis/chat_v1/classes.rb', line 1110

def custom_emoji
  @custom_emoji
end

#unicodeString

A basic emoji represented by a unicode string. Corresponds to the JSON property unicode

Returns:

  • (String)


1115
1116
1117
# File 'lib/google/apis/chat_v1/classes.rb', line 1115

def unicode
  @unicode
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1122
1123
1124
1125
# File 'lib/google/apis/chat_v1/classes.rb', line 1122

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