Class: TD::Types::StoryInteractions
- Defined in:
- lib/tdlib/types/story_interactions.rb
Overview
Represents a list of interactions with a story.
Instance Attribute Summary collapse
-
#interactions ⇒ Array<TD::Types::StoryInteraction>
List of story interactions.
-
#next_offset ⇒ TD::Types::String
The offset for the next request.
-
#total_count ⇒ Integer
Approximate total number of interactions found.
-
#total_forward_count ⇒ Integer
Approximate total number of found forwards and reposts; always 0 for chat stories.
-
#total_reaction_count ⇒ Integer
Approximate total number of found reactions; always 0 for chat stories.
Method Summary
Methods inherited from Base
Instance Attribute Details
#interactions ⇒ Array<TD::Types::StoryInteraction>
List of story interactions.
11 12 13 |
# File 'lib/tdlib/types/story_interactions.rb', line 11 def interactions @interactions end |
#next_offset ⇒ TD::Types::String
The offset for the next request. If empty, then there are no more results.
11 12 13 |
# File 'lib/tdlib/types/story_interactions.rb', line 11 def next_offset @next_offset end |
#total_count ⇒ Integer
Approximate total number of interactions found.
11 12 13 |
# File 'lib/tdlib/types/story_interactions.rb', line 11 def total_count @total_count end |
#total_forward_count ⇒ Integer
Approximate total number of found forwards and reposts; always 0 for chat stories.
11 12 13 |
# File 'lib/tdlib/types/story_interactions.rb', line 11 def total_forward_count @total_forward_count end |
#total_reaction_count ⇒ Integer
Approximate total number of found reactions; always 0 for chat stories.
11 12 13 |
# File 'lib/tdlib/types/story_interactions.rb', line 11 def total_reaction_count @total_reaction_count end |