public class RoomState extends AbstractModel
Constructor and Description |
---|
RoomState() |
RoomState(RoomState 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 |
getCommId()
Get The call ID, which uniquely identifies a call.
|
Long |
getCreateTime()
Get The room creation time.
|
Long |
getDestroyTime()
Get The room termination time.
|
Boolean |
getIsFinished()
Get Whether the room is terminated.
|
String |
getRoomString()
Get The room ID.
|
String |
getUserId()
Get The user ID of the room creator.
|
void |
setCommId(String CommId)
Set The call ID, which uniquely identifies a call.
|
void |
setCreateTime(Long CreateTime)
Set The room creation time.
|
void |
setDestroyTime(Long DestroyTime)
Set The room termination time.
|
void |
setIsFinished(Boolean IsFinished)
Set Whether the room is terminated.
|
void |
setRoomString(String RoomString)
Set The room ID.
|
void |
setUserId(String UserId)
Set The user ID of the room creator.
|
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, toJsonString
public RoomState()
public RoomState(RoomState source)
public String getCommId()
public void setCommId(String CommId)
CommId
- The call ID, which uniquely identifies a call.public String getRoomString()
public void setRoomString(String RoomString)
RoomString
- The room ID.public Long getCreateTime()
public void setCreateTime(Long CreateTime)
CreateTime
- The room creation time.public Long getDestroyTime()
public void setDestroyTime(Long DestroyTime)
DestroyTime
- The room termination time.public Boolean getIsFinished()
public void setIsFinished(Boolean IsFinished)
IsFinished
- Whether the room is terminated.public String getUserId()
public void setUserId(String UserId)
UserId
- The user ID of the room creator.Copyright © 2023. All rights reserved.