public class DescribeCallDetailRequest extends AbstractModel
Constructor and Description |
---|
DescribeCallDetailRequest() |
Modifier and Type | Method and Description |
---|---|
String |
getCommId()
Get Call ID (unique call ID): sdkappid_roomgString (room ID)_createTime (room creation time in UNIX timestamp in seconds).
|
String[] |
getDataType()
Get Metric to query.
|
Long |
getEndTime()
Get Query end time in the format of local UNIX timestamp, such as 1588031999s.
|
String |
getSdkAppId()
Get User `sdkappid`
|
Long |
getStartTime()
Get Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 5 days.
|
String[] |
getUserIds()
Get User array to query, which contains up to 6 users.
|
void |
setCommId(String CommId)
Set Call ID (unique call ID): sdkappid_roomgString (room ID)_createTime (room creation time in UNIX timestamp in seconds).
|
void |
setDataType(String[] DataType)
Set Metric to query.
|
void |
setEndTime(Long EndTime)
Set Query end time in the format of local UNIX timestamp, such as 1588031999s.
|
void |
setSdkAppId(String SdkAppId)
Set User `sdkappid`
|
void |
setStartTime(Long StartTime)
Set Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 5 days.
|
void |
setUserIds(String[] UserIds)
Set User array to query, which contains up to 6 users.
|
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 String getCommId()
public void setCommId(String CommId)
CommId
- Call ID (unique call ID): sdkappid_roomgString (room ID)_createTime (room creation time in UNIX timestamp in seconds). You can get the parameter value through the `DescribeRoomInformation` API which is used to query the room list.public Long getStartTime()
public void setStartTime(Long StartTime)
StartTime
- Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 5 days.public Long getEndTime()
public void setEndTime(Long EndTime)
EndTime
- Query end time in the format of local UNIX timestamp, such as 1588031999s.public String getSdkAppId()
public void setSdkAppId(String SdkAppId)
SdkAppId
- User `sdkappid`public String[] getUserIds()
public void setUserIds(String[] UserIds)
UserIds
- User array to query, which contains up to 6 users. If it is left empty, 6 users will be returned by default.public String[] getDataType()
public void setDataType(String[] DataType)
DataType
- Metric to query. The user list will be returned if it is left empty; all metrics will be returned if its value is `all`.
appCpu: CPU utilization of application;
sysCpu: CPU utilization of system;
aBit: upstream/downstream audio bitrate;
aBlock: audio lag duration;
vBit: upstream/downstream video bitrate;
vCapFps: video capturing frame rate;
vEncFps: video sending frame rate;
vDecFps: rendering frame rate;
vBlock: video lag duration;
aLoss: upstream/downstream audio packet loss;
vLoss: upstream/downstream video packet loss;
vWidth: upstream/downstream resolution in width;
vHeight: upstream/downstream resolution in height.Copyright © 2020. All rights reserved.