class Google::Apis::YoutubeAnalyticsV2::GroupItemResource
Attributes
id[RW]
The channel, video, playlist, or asset ID that YouTube uses to uniquely identify the item that is being added to the group. Corresponds to the JSON property `id` @return [String]
kind[RW]
Identifies the type of resource being added to the group. Valid values for this property are: * `youtube#channel` * `youtube#playlist` * `youtube#video` * `youtubePartner#asset` Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_analytics_v2/classes.rb, line 296 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_analytics_v2/classes.rb, line 301 def update!(**args) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) end