Class: TD::Types::StoryInteractionInfo
- Defined in:
- lib/tdlib/types/story_interaction_info.rb
Overview
Contains information about interactions with a story.
Instance Attribute Summary collapse
-
#forward_count ⇒ Integer
Number of times the story was forwarded; 0 if none or unknown.
-
#reaction_count ⇒ Integer
Number of reactions added to the story; 0 if none or unknown.
-
#recent_viewer_user_ids ⇒ Array<Integer>
Identifiers of at most 3 recent viewers of the story.
-
#view_count ⇒ Integer
Number of times the story was viewed.
Method Summary
Methods inherited from Base
Instance Attribute Details
#forward_count ⇒ Integer
Number of times the story was forwarded; 0 if none or unknown.
8 9 10 |
# File 'lib/tdlib/types/story_interaction_info.rb', line 8 def forward_count @forward_count end |
#reaction_count ⇒ Integer
Number of reactions added to the story; 0 if none or unknown.
8 9 10 |
# File 'lib/tdlib/types/story_interaction_info.rb', line 8 def reaction_count @reaction_count end |
#recent_viewer_user_ids ⇒ Array<Integer>
Identifiers of at most 3 recent viewers of the story.
8 9 10 |
# File 'lib/tdlib/types/story_interaction_info.rb', line 8 def recent_viewer_user_ids @recent_viewer_user_ids end |
#view_count ⇒ Integer
Number of times the story was viewed.
8 9 10 |
# File 'lib/tdlib/types/story_interaction_info.rb', line 8 def view_count @view_count end |