public class MemberRecord extends AbstractModel
| Constructor and Description | 
|---|
| MemberRecord() | 
| MemberRecord(MemberRecord 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 | 
|---|---|
| Long | getAnswerQuestions()Get Number of questions answered by the user | 
| Long | getCamera()Get Whether the camera is enabled | 
| Long | getFirstJoinTimestamp()Get First time that the user entered the room, in UNIX timestamp format | 
| Long | getHandUps()Get Number of hand raising times | 
| Long | getLastQuitTimestamp()Get Last time that the user left the room, in UNIX timestamp format | 
| Long | getMic()Get Whether the mic is enabled | 
| Long | getPresentTime()Get Online duration, in seconds | 
| Long | getRewords()Get Number of rewards received | 
| Long | getSilence()Get Whether the user is muted | 
| String | getUserId()Get User ID | 
| String | getUserName()Get Username | 
| void | setAnswerQuestions(Long AnswerQuestions)Set Number of questions answered by the user | 
| void | setCamera(Long Camera)Set Whether the camera is enabled | 
| void | setFirstJoinTimestamp(Long FirstJoinTimestamp)Set First time that the user entered the room, in UNIX timestamp format | 
| void | setHandUps(Long HandUps)Set Number of hand raising times | 
| void | setLastQuitTimestamp(Long LastQuitTimestamp)Set Last time that the user left the room, in UNIX timestamp format | 
| void | setMic(Long Mic)Set Whether the mic is enabled | 
| void | setPresentTime(Long PresentTime)Set Online duration, in seconds | 
| void | setRewords(Long Rewords)Set Number of rewards received | 
| void | setSilence(Long Silence)Set Whether the user is muted | 
| void | setUserId(String UserId)Set User ID | 
| void | setUserName(String UserName)Set Username | 
| 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 MemberRecord()
public MemberRecord(MemberRecord source)
public String getUserId()
public void setUserId(String UserId)
UserId - User IDpublic String getUserName()
public void setUserName(String UserName)
UserName - Usernamepublic Long getPresentTime()
public void setPresentTime(Long PresentTime)
PresentTime - Online duration, in secondspublic Long getCamera()
public void setCamera(Long Camera)
Camera - Whether the camera is enabledpublic Long getMic()
public void setMic(Long Mic)
Mic - Whether the mic is enabledpublic Long getSilence()
public void setSilence(Long Silence)
Silence - Whether the user is mutedpublic Long getAnswerQuestions()
public void setAnswerQuestions(Long AnswerQuestions)
AnswerQuestions - Number of questions answered by the userpublic Long getHandUps()
public void setHandUps(Long HandUps)
HandUps - Number of hand raising timespublic Long getFirstJoinTimestamp()
public void setFirstJoinTimestamp(Long FirstJoinTimestamp)
FirstJoinTimestamp - First time that the user entered the room, in UNIX timestamp formatpublic Long getLastQuitTimestamp()
public void setLastQuitTimestamp(Long LastQuitTimestamp)
LastQuitTimestamp - Last time that the user left the room, in UNIX timestamp formatpublic Long getRewords()
public void setRewords(Long Rewords)
Rewords - Number of rewards receivedCopyright © 2023. All rights reserved.