Class: TD::Types::StoryInteraction
- Defined in:
- lib/tdlib/types/story_interaction.rb
Overview
Represents interaction with a story.
Instance Attribute Summary collapse
-
#actor_id ⇒ TD::Types::MessageSender
Identifier of the user or chat that made the interaction.
-
#block_list ⇒ TD::Types::BlockList?
Block list to which the actor is added; may be null if none or for chat stories.
-
#interaction_date ⇒ Integer
Approximate point in time (Unix timestamp) when the interaction happened.
-
#type ⇒ TD::Types::StoryInteractionType
Type of the interaction.
Method Summary
Methods inherited from Base
Instance Attribute Details
#actor_id ⇒ TD::Types::MessageSender
Identifier of the user or chat that made the interaction.
9 10 11 |
# File 'lib/tdlib/types/story_interaction.rb', line 9 def actor_id @actor_id end |
#block_list ⇒ TD::Types::BlockList?
Block list to which the actor is added; may be null if none or for chat stories.
9 10 11 |
# File 'lib/tdlib/types/story_interaction.rb', line 9 def block_list @block_list end |
#interaction_date ⇒ Integer
Approximate point in time (Unix timestamp) when the interaction happened.
9 10 11 |
# File 'lib/tdlib/types/story_interaction.rb', line 9 def interaction_date @interaction_date end |
#type ⇒ TD::Types::StoryInteractionType
Type of the interaction.
9 10 11 |
# File 'lib/tdlib/types/story_interaction.rb', line 9 def type @type end |