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 AccountDataaccountDataThe private data that this user has attached to this room.private StatestateThe state updates for the room up to the start of the timeline.private TimelinetimelineThe 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 AccountDatagetAccountData()StategetState()TimelinegetTimeline()voidsetAccountData(AccountData accountData)voidsetState(State state)voidsetTimeline(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)
-
-