Class LeftRoom
- java.lang.Object
-
- io.github.ma1uta.matrix.client.model.sync.LeftRoom
-
public class LeftRoom extends Object
Left room.
-
-
Field Summary
Fields Modifier and Type Field Description private AccountData
accountData
The private data that this user has attached to this room.private State
state
The state updates for the room up to the start of the timeline.private Timeline
timeline
The timeline of messages and state changes in the room up to the point when the user left.
-
Constructor Summary
Constructors Constructor Description LeftRoom()
-
Method Summary
Modifier and Type Method Description AccountData
getAccountData()
State
getState()
Timeline
getTimeline()
void
setAccountData(AccountData accountData)
void
setState(State state)
void
setTimeline(Timeline timeline)
-
-
-
Field Detail
-
state
private State state
The state updates for the room up to the start of the timeline.
-
timeline
private Timeline timeline
The timeline of messages and state changes in the room up to the point when the user left.
-
accountData
private AccountData accountData
The private data that this user has attached to this room.
-
-
Method Detail
-
getState
public State getState()
-
setState
public void setState(State state)
-
getTimeline
public Timeline getTimeline()
-
setTimeline
public void setTimeline(Timeline timeline)
-
getAccountData
public AccountData getAccountData()
-
setAccountData
public void setAccountData(AccountData accountData)
-
-