Class: Google::Apis::CloudsearchV1::Emoji
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::Emoji
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#custom_emoji ⇒ Google::Apis::CloudsearchV1::CustomEmoji
Proto representation of a custom emoji.
-
#unicode ⇒ String
A basic emoji represented by a unicode string.
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.
1104 1105 1106 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1104 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_emoji ⇒ Google::Apis::CloudsearchV1::CustomEmoji
Proto representation of a custom emoji. May be used in both APIs and in
Spanner, but certain fields should be restricted to one or the other. See the
per-field documentation for details. NEXT_TAG: 11
Corresponds to the JSON property customEmoji
1097 1098 1099 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1097 def custom_emoji @custom_emoji end |
#unicode ⇒ String
A basic emoji represented by a unicode string.
Corresponds to the JSON property unicode
1102 1103 1104 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1102 def unicode @unicode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1109 1110 1111 1112 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1109 def update!(**args) @custom_emoji = args[:custom_emoji] if args.key?(:custom_emoji) @unicode = args[:unicode] if args.key?(:unicode) end |