Class: Google::Apis::YoutubeV3::ThirdPartyLinkSnippet
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::ThirdPartyLinkSnippet
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/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.
7443 7444 7445 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7443 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
7436 7437 7438 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7436 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
7441 7442 7443 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7441 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7448 7449 7450 7451 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7448 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 |