class Yt::Collections::StatisticsSets
@private
Private Instance Methods
Source
# File lib/yt/collections/statistics_sets.rb, line 11 def attributes_for_new_item(data) {data: data['statistics']} end
Source
# File lib/yt/collections/statistics_sets.rb, line 18 def list_params super.tap do |params| params[:path] = "/youtube/v3/#{@parent.kind.pluralize}" params[:params] = statistics_sets_params end end
@return [Hash] the parameters to submit to YouTube to get the
statistics of a resource, for instance a video.
@see developers.google.com/youtube/v3/docs/videos#resource
Calls superclass method
Yt::Actions::List#list_params
Source
# File lib/yt/collections/statistics_sets.rb, line 25 def statistics_sets_params {max_results: 50, part: 'statistics', id: @parent.id} end