Class: Yt::Models::StatisticsSet

Inherits:
Base
  • Object
show all
Defined in:
lib/yt/models/statistics_set.rb

Overview

Encapsulates statistics about the resource, such as the number of times the resource has been viewed or liked.

Instance Method Summary collapse

Methods included from Yt::Modules::Associations

#has_many, #has_one

Constructor Details

#initialize(options = {}) ⇒ StatisticsSet

Returns a new instance of StatisticsSet.



9
10
11
# File 'lib/yt/models/statistics_set.rb', line 9

def initialize(options = {})
  @data = options[:data]
end

Instance Method Details

#comment_countInteger

Returns the number of comments for the resource.

Returns:

  • (Integer)

    the number of comments for the resource.



19
20
21
# File 'lib/yt/models/statistics_set.rb', line 19

def comment_count
  @comment_count ||= @data['commentCount'].to_i
end

#dislike_countInteger

Returns the number of users who disliked the resource.

Returns:

  • (Integer)

    the number of users who disliked the resource.



29
30
31
# File 'lib/yt/models/statistics_set.rb', line 29

def dislike_count
  @dislike_count ||= @data['dislikeCount'].to_i
end

#favorite_countInteger

Returns the number of users who currently have the resource marked as a favorite resource.

Returns:

  • (Integer)

    the number of users who currently have the resource marked as a favorite resource.



35
36
37
# File 'lib/yt/models/statistics_set.rb', line 35

def favorite_count
  @favorite_count ||= @data['favoriteCount'].to_i
end

#like_countInteger

Returns the number of users who liked the resource.

Returns:

  • (Integer)

    the number of users who liked the resource.



24
25
26
# File 'lib/yt/models/statistics_set.rb', line 24

def like_count
  @like_count ||= @data['likeCount'].to_i
end

#subscriber_countInteger

Returns the number of subscriber the resource has.

Returns:

  • (Integer)

    the number of subscriber the resource has.



45
46
47
# File 'lib/yt/models/statistics_set.rb', line 45

def subscriber_count
  @subscriber_count ||= @data['subscriberCount'].to_i
end

#subscriber_count_visible?Boolean

Returns whether the number of subscribers is publicly visible.

Returns:

  • (Boolean)

    whether the number of subscribers is publicly visible.



50
51
52
# File 'lib/yt/models/statistics_set.rb', line 50

def subscriber_count_visible?
  @subscriber_count_visible ||= @data['hiddenSubscriberCount'] == false
end

#video_countInteger

Returns the number of videos updated to the resource.

Returns:

  • (Integer)

    the number of videos updated to the resource.



40
41
42
# File 'lib/yt/models/statistics_set.rb', line 40

def video_count
  @video_count ||= @data['videoCount'].to_i
end

#view_countInteger

Returns the number of times the resource has been viewed.

Returns:

  • (Integer)

    the number of times the resource has been viewed.



14
15
16
# File 'lib/yt/models/statistics_set.rb', line 14

def view_count
  @view_count ||= @data['viewCount'].to_i
end