Class: Google::Apis::YoutubeV3::ChannelToStoreLinkDetails
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::ChannelToStoreLinkDetails
- 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
Information specific to a store on a merchandising platform linked to a YouTube channel.
Instance Attribute Summary collapse
-
#store_name ⇒ String
Name of the store.
-
#store_url ⇒ String
Landing page of the store.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChannelToStoreLinkDetails
constructor
A new instance of ChannelToStoreLinkDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ChannelToStoreLinkDetails
Returns a new instance of ChannelToStoreLinkDetails.
1928 1929 1930 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 1928 def initialize(**args) update!(**args) end |
Instance Attribute Details
#store_name ⇒ String
Name of the store.
Corresponds to the JSON property storeName
1921 1922 1923 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 1921 def store_name @store_name end |
#store_url ⇒ String
Landing page of the store.
Corresponds to the JSON property storeUrl
1926 1927 1928 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 1926 def store_url @store_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1933 1934 1935 1936 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 1933 def update!(**args) @store_name = args[:store_name] if args.key?(:store_name) @store_url = args[:store_url] if args.key?(:store_url) end |