Interface StoryInteraction

Represents interaction with a story.

interface StoryInteraction {
    @type: "storyInteraction";
    actor_id: MessageSender;
    block_list: BlockList;
    interaction_date: number;
    type: StoryInteractionType;
}

Properties

@type: "storyInteraction"
actor_id: MessageSender

Identifier of the user or chat that made the interaction.

block_list: BlockList

Block list to which the actor is added; may be null if none or for chat stories.

interaction_date: number

Approximate point in time (Unix timestamp) when the interaction happened.

Type of the interaction.