Packages

Elixir API to communicate with Matrix Synapse

Current section

Files

Jump to
ex_matrix_api lib synapse rooms timeline.ex
Raw

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