class Google::Apis::YoutubeAnalyticsV2::GroupContentDetails
A group's content details.
Attributes
item_count[RW]
The number of items in the group. Corresponds to the JSON property `itemCount` @return [Fixnum]
item_type[RW]
The type of resources that the group contains. Valid values for this property are: * `youtube#channel` * `youtube#playlist` * `youtube#video` * ` youtubePartner#asset` Corresponds to the JSON property `itemType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_analytics_v2/classes.rb, line 212 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 217 def update!(**args) @item_count = args[:item_count] if args.key?(:item_count) @item_type = args[:item_type] if args.key?(:item_type) end