public class UserInformation extends AbstractModel
| Constructor and Description | 
|---|
| UserInformation() | 
| UserInformation(UserInformation source)NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getClientIp()Get The client IP address. | 
| String | getDeviceType()Get The device type. | 
| Boolean | getFinished()Get Whether a user has left the room. | 
| Long | getJoinTs()Get The time when the user entered the room. | 
| Long | getLeaveTs()Get The time when the user left the room. | 
| String | getRoomStr()Get The room ID. | 
| String | getSdkVersion()Get The SDK version number. | 
| String | getUserId()Get The user ID. | 
| void | setClientIp(String ClientIp)Set The client IP address. | 
| void | setDeviceType(String DeviceType)Set The device type. | 
| void | setFinished(Boolean Finished)Set Whether a user has left the room. | 
| void | setJoinTs(Long JoinTs)Set The time when the user entered the room. | 
| void | setLeaveTs(Long LeaveTs)Set The time when the user left the room. | 
| void | setRoomStr(String RoomStr)Set The room ID. | 
| void | setSdkVersion(String SdkVersion)Set The SDK version number. | 
| void | setUserId(String UserId)Set The user ID. | 
| void | toMap(HashMap<String,String> map,
     String prefix)Internal implementation, normal users should not use it. | 
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonStringpublic UserInformation()
public UserInformation(UserInformation source)
public String getRoomStr()
public void setRoomStr(String RoomStr)
RoomStr - The room ID.public String getUserId()
public void setUserId(String UserId)
UserId - The user ID.public Long getJoinTs()
public void setJoinTs(Long JoinTs)
JoinTs - The time when the user entered the room.public Long getLeaveTs()
public void setLeaveTs(Long LeaveTs)
LeaveTs - The time when the user left the room. If the user is still in the room, the current time will be returned.public String getDeviceType()
public void setDeviceType(String DeviceType)
DeviceType - The device type.public String getSdkVersion()
public void setSdkVersion(String SdkVersion)
SdkVersion - The SDK version number.public String getClientIp()
public void setClientIp(String ClientIp)
ClientIp - The client IP address.public Boolean getFinished()
public void setFinished(Boolean Finished)
Finished - Whether a user has left the room.Copyright © 2023. All rights reserved.