Class AdminResponse
- java.lang.Object
-
- io.github.ma1uta.matrix.client.model.admin.AdminResponse
-
public class AdminResponse extends Object
Response for gets information about a particular user.
-
-
Constructor Summary
Constructors Constructor Description AdminResponse()
-
Method Summary
Modifier and Type Method Description Map<String,DeviceInfo>
getDevices()
String
getUserId()
void
setDevices(Map<String,DeviceInfo> devices)
void
setUserId(String userId)
-
-
-
Field Detail
-
userId
private String userId
The Matrix user ID of the user.
-
devices
private Map<String,DeviceInfo> devices
Each key is an identitfier for one of the user's devices.
-
-
Method Detail
-
getUserId
public String getUserId()
-
setUserId
public void setUserId(String userId)
-
getDevices
public Map<String,DeviceInfo> getDevices()
-
setDevices
public void setDevices(Map<String,DeviceInfo> devices)
-
-