class Google::Apis::FirebasedynamiclinksV1::SocialMetaTagInfo

Parameters for social meta tag params. Used to set meta tag data for link previews on social sites.

Attributes

social_description[RW]

A short description of the link. Optional. Corresponds to the JSON property `socialDescription` @return [String]

social_title[RW]

Title to be displayed. Optional. Corresponds to the JSON property `socialTitle` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 1015
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 1020
def update!(**args)
  @social_description = args[:social_description] if args.key?(:social_description)
  @social_image_link = args[:social_image_link] if args.key?(:social_image_link)
  @social_title = args[:social_title] if args.key?(:social_title)
end