<aside> đ Links (Object base class)
Notion Ruby Mapping Public API Reference
</aside>
<aside> âšī¸ â Table of Contents
</aside>
eo = EmojiObject.emoji_object "đ"
=> #<NotionRubyMapping::EmojiObject:0x000000010983f450 @emoji="đ", @will_update=false>
eo2 = EmojiObject.emoji_object eo
=> #<NotionRubyMapping::EmojiObject:0x000000010983f450 @emoji="đ", @will_update=false> # eo and eo2 are equal object.
emoji=
sets str
to emoji, and set will_update
flag to true.
eo = EmojiObject.emoji_object "đ"
=> #<NotionRubyMapping::EmojiObject:0x000000010983f450 @emoji="đ", @will_update=false>
eo.emoji = "đ"
=> "đ"
eo
=> #<NotionRubyMapping::EmojiObject:0x000000010983f450 @emoji="đ", @will_update=true>