class Google::Apis::YoutubeV3::ThirdPartyLinkSnippet
Basic information about a third party account link, including its type and type-specific information.
Attributes
channel_to_store_link[RW]
Information specific to a store on a merchandising platform linked to a YouTube channel. Corresponds to the JSON property `channelToStoreLink` @return [Google::Apis::YoutubeV3::ChannelToStoreLinkDetails]
type[RW]
Type of the link named after the entities that are being linked. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 6954 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 6959 def update!(**args) @channel_to_store_link = args[:channel_to_store_link] if args.key?(:channel_to_store_link) @type = args[:type] if args.key?(:type) end