class Google::Apis::YoutubeV3::ChannelToStoreLinkDetails

Information specific to a store on a merchandising platform linked to a YouTube channel.

Attributes

store_name[RW]

Name of the store. Corresponds to the JSON property `storeName` @return [String]

store_url[RW]

Landing page of the store. Corresponds to the JSON property `storeUrl` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 1924
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 1929
def update!(**args)
  @store_name = args[:store_name] if args.key?(:store_name)
  @store_url = args[:store_url] if args.key?(:store_url)
end