Current section
Files
Jump to
Current section
Files
lib/synapse/rooms/timeline.ex
defmodule ExMatrixApi.Synapse.Rooms.Timeline do
@moduledoc """
Timeline of events in scope of room.
"""
defstruct uid: nil,
events: [],
state_events: [],
limited: false,
prev_batch: nil,
next_batch: nil
end