class Google::Apis::YoutubeV3::SuperStickerMetadata
Attributes
alt_text[RW]
Internationalized alt text that describes the sticker image and any animation associated with it. Corresponds to the JSON property `altText` @return [String]
alt_text_language[RW]
Specifies the localization language in which the alt text is returned. Corresponds to the JSON property `altTextLanguage` @return [String]
sticker_id[RW]
Unique identifier of the Super Sticker. This is a shorter form of the alt_text
that includes pack name and a recognizable characteristic of the sticker. Corresponds to the JSON property `stickerId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 6827 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_v3/classes.rb, line 6832 def update!(**args) @alt_text = args[:alt_text] if args.key?(:alt_text) @alt_text_language = args[:alt_text_language] if args.key?(:alt_text_language) @sticker_id = args[:sticker_id] if args.key?(:sticker_id) end