Class InvitedRoom
- java.lang.Object
-
- io.github.ma1uta.matrix.client.model.sync.InvitedRoom
-
public class InvitedRoom extends Object
Invite room.
-
-
Field Summary
Fields Modifier and Type Field Description private InviteState
inviteState
The state of a room that the user has been invited to.
-
Constructor Summary
Constructors Constructor Description InvitedRoom()
-
Method Summary
Modifier and Type Method Description InviteState
getInviteState()
void
setInviteState(InviteState inviteState)
-
-
-
Field Detail
-
inviteState
private InviteState inviteState
The state of a room that the user has been invited to. These state events may only have the sender, type, state_key and content keys present. These events do not replace any state that the client already has for the room, for example if the client has archived the room. Instead the client should keep two separate copies of the state: the one from the invite_state and one from the archived state. If the client joins the room then the current state will be given as a delta against the archived state not the invite_state.
-
-
Method Detail
-
getInviteState
public InviteState getInviteState()
-
setInviteState
public void setInviteState(InviteState inviteState)
-
-