Class: Google::Apis::YoutubeV3::ThirdPartyLinkSnippet
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::ThirdPartyLinkSnippet
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb
Overview
Basic information about a third party account link, including its type and type-specific information.
Instance Attribute Summary collapse
-
#channel_to_store_link ⇒ Google::Apis::YoutubeV3::ChannelToStoreLinkDetails
Information specific to a store on a merchandising platform linked to a YouTube channel.
-
#type ⇒ String
Type of the link named after the entities that are being linked.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ThirdPartyLinkSnippet
constructor
A new instance of ThirdPartyLinkSnippet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ThirdPartyLinkSnippet
Returns a new instance of ThirdPartyLinkSnippet.
6856 6857 6858 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6856 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel_to_store_link ⇒ Google::Apis::YoutubeV3::ChannelToStoreLinkDetails
Information specific to a store on a merchandising platform linked to a
YouTube channel.
Corresponds to the JSON property channelToStoreLink
6849 6850 6851 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6849 def channel_to_store_link @channel_to_store_link end |
#type ⇒ String
Type of the link named after the entities that are being linked.
Corresponds to the JSON property type
6854 6855 6856 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6854 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6861 6862 6863 6864 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6861 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 |